Class: Google::Apis::NetworksecurityV1::SecurityProfileGroup
- Inherits:
-
Object
- Object
- Google::Apis::NetworksecurityV1::SecurityProfileGroup
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/networksecurity_v1/classes.rb,
lib/google/apis/networksecurity_v1/representations.rb,
lib/google/apis/networksecurity_v1/representations.rb
Overview
SecurityProfileGroup is a resource that defines the behavior for various ProfileTypes. Next ID: 11
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#custom_mirroring_profile ⇒ String
Optional.
-
#description ⇒ String
Optional.
-
#etag ⇒ String
Output only.
-
#labels ⇒ Hash<String,String>
Optional.
-
#name ⇒ String
Immutable.
-
#threat_prevention_profile ⇒ String
Optional.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SecurityProfileGroup
constructor
A new instance of SecurityProfileGroup.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SecurityProfileGroup
Returns a new instance of SecurityProfileGroup.
2085 2086 2087 |
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 2085 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. Resource creation timestamp.
Corresponds to the JSON property createTime
2041 2042 2043 |
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 2041 def create_time @create_time end |
#custom_mirroring_profile ⇒ String
Optional. Reference to a SecurityProfile with the CustomMirroring
configuration.
Corresponds to the JSON property customMirroringProfile
2047 2048 2049 |
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 2047 def custom_mirroring_profile @custom_mirroring_profile end |
#description ⇒ String
Optional. An optional description of the profile group. Max length 2048
characters.
Corresponds to the JSON property description
2053 2054 2055 |
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 2053 def description @description end |
#etag ⇒ String
Output only. This checksum is computed by the server based on the value of
other fields, and may be sent on update and delete requests to ensure the
client has an up-to-date value before proceeding.
Corresponds to the JSON property etag
2060 2061 2062 |
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 2060 def etag @etag end |
#labels ⇒ Hash<String,String>
Optional. Labels as key value pairs.
Corresponds to the JSON property labels
2065 2066 2067 |
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 2065 def labels @labels end |
#name ⇒ String
Immutable. Identifier. Name of the SecurityProfileGroup resource. It matches
pattern projects|organizations/*/locations/
location/securityProfileGroups/
security_profile_group`.
Corresponds to the JSON property
name`
2072 2073 2074 |
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 2072 def name @name end |
#threat_prevention_profile ⇒ String
Optional. Reference to a SecurityProfile with the ThreatPrevention
configuration.
Corresponds to the JSON property threatPreventionProfile
2078 2079 2080 |
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 2078 def threat_prevention_profile @threat_prevention_profile end |
#update_time ⇒ String
Output only. Last resource update timestamp.
Corresponds to the JSON property updateTime
2083 2084 2085 |
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 2083 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 |
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 2090 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @custom_mirroring_profile = args[:custom_mirroring_profile] if args.key?(:custom_mirroring_profile) @description = args[:description] if args.key?(:description) @etag = args[:etag] if args.key?(:etag) @labels = args[:labels] if args.key?(:labels) @name = args[:name] if args.key?(:name) @threat_prevention_profile = args[:threat_prevention_profile] if args.key?(:threat_prevention_profile) @update_time = args[:update_time] if args.key?(:update_time) end |