Class: Google::Apis::NetworksecurityV1beta1::MirroringEndpointGroupAssociation

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 MirroringEndpointGroupAssociation object

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MirroringEndpointGroupAssociation

Returns a new instance of MirroringEndpointGroupAssociation.



2682
2683
2684
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2682

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

Instance Attribute Details

#create_timeString

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

Returns:

  • (String)


2635
2636
2637
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2635

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>)


2640
2641
2642
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2640

def labels
  @labels
end

#locations_detailsArray<Google::Apis::NetworksecurityV1beta1::MirroringEndpointGroupAssociationLocationDetails>

Output only. The list of locations that this association is in and its details. Corresponds to the JSON property locationsDetails



2645
2646
2647
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2645

def locations_details
  @locations_details
end

#mirroring_endpoint_groupString

Required. Immutable. The Mirroring Endpoint Group that this resource is connected to. Format is: projects/project/locations/global/ mirroringEndpointGroups/mirroringEndpointGroup` Corresponds to the JSON propertymirroringEndpointGroup`

Returns:

  • (String)


2652
2653
2654
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2652

def mirroring_endpoint_group
  @mirroring_endpoint_group
end

#nameString

Immutable. Identifier. The name of the MirroringEndpointGroupAssociation. Corresponds to the JSON property name

Returns:

  • (String)


2657
2658
2659
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2657

def name
  @name
end

#networkString

Required. Immutable. The VPC network associated. Format: projects/project/ global/networks/network. Corresponds to the JSON property network

Returns:

  • (String)


2663
2664
2665
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2663

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)


2669
2670
2671
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2669

def reconciling
  @reconciling
end

#stateString

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

Returns:

  • (String)


2675
2676
2677
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2675

def state
  @state
end

#update_timeString

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

Returns:

  • (String)


2680
2681
2682
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2680

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2687

def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @labels = args[:labels] if args.key?(:labels)
  @locations_details = args[:locations_details] if args.key?(:locations_details)
  @mirroring_endpoint_group = args[:mirroring_endpoint_group] if args.key?(:mirroring_endpoint_group)
  @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