Class: Google::Apis::NetworksecurityV1beta1::MirroringDeploymentGroup
- Inherits:
-
Object
- Object
- Google::Apis::NetworksecurityV1beta1::MirroringDeploymentGroup
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/networksecurity_v1beta1/classes.rb,
lib/google/apis/networksecurity_v1beta1/representations.rb,
lib/google/apis/networksecurity_v1beta1/representations.rb
Overview
Message describing MirroringDeploymentGroup object NEXT ID: 10
Instance Attribute Summary collapse
-
#connected_endpoint_groups ⇒ Array<Google::Apis::NetworksecurityV1beta1::MirroringDeploymentGroupConnectedEndpointGroup>
Output only.
-
#create_time ⇒ String
Output only.
-
#labels ⇒ Hash<String,String>
Optional.
-
#name ⇒ String
Immutable.
-
#network ⇒ String
Required.
-
#reconciling ⇒ Boolean
(also: #reconciling?)
Output only.
-
#state ⇒ String
Output only.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MirroringDeploymentGroup
constructor
A new instance of MirroringDeploymentGroup.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MirroringDeploymentGroup
Returns a new instance of MirroringDeploymentGroup.
3016 3017 3018 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 3016 def initialize(**args) update!(**args) end |
Instance Attribute Details
#connected_endpoint_groups ⇒ Array<Google::Apis::NetworksecurityV1beta1::MirroringDeploymentGroupConnectedEndpointGroup>
Output only. The list of Mirroring Endpoint Groups that are connected to this
resource.
Corresponds to the JSON property connectedEndpointGroups
2976 2977 2978 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2976 def connected_endpoint_groups @connected_endpoint_groups end |
#create_time ⇒ String
Output only. [Output only] Create time stamp
Corresponds to the JSON property createTime
2981 2982 2983 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2981 def create_time @create_time end |
#labels ⇒ Hash<String,String>
Optional. Labels as key value pairs
Corresponds to the JSON property labels
2986 2987 2988 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2986 def labels @labels end |
#name ⇒ String
Immutable. Identifier. Then name of the MirroringDeploymentGroup.
Corresponds to the JSON property name
2991 2992 2993 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2991 def name @name end |
#network ⇒ String
Required. Immutable. The network that is being used for the deployment. Format
is: projects/project
/global/networks/network
.
Corresponds to the JSON property network
2997 2998 2999 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2997 def network @network end |
#reconciling ⇒ Boolean Also known as: reconciling?
Output only. Whether reconciling is in progress, recommended per https://
google.aip.dev/128.
Corresponds to the JSON property reconciling
3003 3004 3005 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 3003 def reconciling @reconciling end |
#state ⇒ String
Output only. Current state of the deployment group.
Corresponds to the JSON property state
3009 3010 3011 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 3009 def state @state end |
#update_time ⇒ String
Output only. [Output only] Update time stamp
Corresponds to the JSON property updateTime
3014 3015 3016 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 3014 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 3021 def update!(**args) @connected_endpoint_groups = args[:connected_endpoint_groups] if args.key?(:connected_endpoint_groups) @create_time = args[:create_time] if args.key?(:create_time) @labels = args[:labels] if args.key?(:labels) @name = args[:name] if args.key?(:name) @network = args[:network] if args.key?(:network) @reconciling = args[:reconciling] if args.key?(:reconciling) @state = args[:state] if args.key?(:state) @update_time = args[:update_time] if args.key?(:update_time) end |