Class: Google::Apis::NetworksecurityV1beta1::MirroringDeploymentGroup

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MirroringDeploymentGroup

Returns a new instance of MirroringDeploymentGroup.



3030
3031
3032
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 3030

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#connected_endpoint_groupsArray<Google::Apis::NetworksecurityV1beta1::MirroringDeploymentGroupConnectedEndpointGroup>

Output only. The list of Mirroring Endpoint Groups that are connected to this resource. Corresponds to the JSON property connectedEndpointGroups



2990
2991
2992
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2990

def connected_endpoint_groups
  @connected_endpoint_groups
end

#create_timeString

Output only. [Output only] Create time stamp Corresponds to the JSON property createTime

Returns:

  • (String)


2995
2996
2997
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2995

def create_time
  @create_time
end

#labelsHash<String,String>

Optional. Labels as key value pairs Corresponds to the JSON property labels

Returns:

  • (Hash<String,String>)


3000
3001
3002
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 3000

def labels
  @labels
end

#nameString

Immutable. Identifier. Then name of the MirroringDeploymentGroup. Corresponds to the JSON property name

Returns:

  • (String)


3005
3006
3007
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 3005

def name
  @name
end

#networkString

Required. Immutable. The network that is being used for the deployment. Format is: projects/project/global/networks/network. Corresponds to the JSON property network

Returns:

  • (String)


3011
3012
3013
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 3011

def network
  @network
end

#reconcilingBoolean Also known as: reconciling?

Output only. Whether reconciling is in progress, recommended per https:// google.aip.dev/128. Corresponds to the JSON property reconciling

Returns:

  • (Boolean)


3017
3018
3019
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 3017

def reconciling
  @reconciling
end

#stateString

Output only. Current state of the deployment group. Corresponds to the JSON property state

Returns:

  • (String)


3023
3024
3025
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 3023

def state
  @state
end

#update_timeString

Output only. [Output only] Update time stamp Corresponds to the JSON property updateTime

Returns:

  • (String)


3028
3029
3030
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 3028

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 3035

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