Class: Google::Apis::NetworksecurityV1beta1::InterceptEndpointGroupAssociationLocationDetails

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

Details about the association status in a specific cloud location.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ InterceptEndpointGroupAssociationLocationDetails

Returns a new instance of InterceptEndpointGroupAssociationLocationDetails.



2111
2112
2113
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2111

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

Instance Attribute Details

#locationString

Output only. The cloud location. Corresponds to the JSON property location

Returns:

  • (String)


2104
2105
2106
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2104

def location
  @location
end

#stateString

Output only. The association state in this location. Corresponds to the JSON property state

Returns:

  • (String)


2109
2110
2111
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2109

def state
  @state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2116
2117
2118
2119
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2116

def update!(**args)
  @location = args[:location] if args.key?(:location)
  @state = args[:state] if args.key?(:state)
end