Class: Google::Apis::NetworksecurityV1beta1::InterceptEndpointGroupAssociation
- Inherits:
-
Object
- Object
- Google::Apis::NetworksecurityV1beta1::InterceptEndpointGroupAssociation
- 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 InterceptEndpointGroupAssociation object
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#intercept_endpoint_group ⇒ String
Required.
-
#labels ⇒ Hash<String,String>
Optional.
-
#locations_details ⇒ Array<Google::Apis::NetworksecurityV1beta1::InterceptEndpointGroupAssociationLocationDetails>
Output only.
-
#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) ⇒ InterceptEndpointGroupAssociation
constructor
A new instance of InterceptEndpointGroupAssociation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InterceptEndpointGroupAssociation
Returns a new instance of InterceptEndpointGroupAssociation.
2030 2031 2032 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2030 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. [Output only] Create time stamp
Corresponds to the JSON property createTime
1983 1984 1985 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1983 def create_time @create_time end |
#intercept_endpoint_group ⇒ String
Required. Immutable. The Intercept Endpoint Group that this resource is
connected to. Format is: projects/
project/locations/global/
interceptEndpointGroups/
interceptEndpointGroup``
Corresponds to the JSON property interceptEndpointGroup
1990 1991 1992 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1990 def intercept_endpoint_group @intercept_endpoint_group end |
#labels ⇒ Hash<String,String>
Optional. Labels as key value pairs
Corresponds to the JSON property labels
1995 1996 1997 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1995 def labels @labels end |
#locations_details ⇒ Array<Google::Apis::NetworksecurityV1beta1::InterceptEndpointGroupAssociationLocationDetails>
Output only. The list of locations that this association is in and its details.
Corresponds to the JSON property locationsDetails
2000 2001 2002 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2000 def locations_details @locations_details end |
#name ⇒ String
Immutable. Identifier. The name of the InterceptEndpointGroupAssociation.
Corresponds to the JSON property name
2005 2006 2007 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2005 def name @name end |
#network ⇒ String
Required. Immutable. The VPC network associated. Format: projects/project
/
global/networks/network
.
Corresponds to the JSON property network
2011 2012 2013 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2011 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
2017 2018 2019 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2017 def reconciling @reconciling end |
#state ⇒ String
Output only. Current state of the endpoint group association.
Corresponds to the JSON property state
2023 2024 2025 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2023 def state @state end |
#update_time ⇒ String
Output only. [Output only] Update time stamp
Corresponds to the JSON property updateTime
2028 2029 2030 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2028 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 2035 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @intercept_endpoint_group = args[:intercept_endpoint_group] if args.key?(:intercept_endpoint_group) @labels = args[:labels] if args.key?(:labels) @locations_details = args[:locations_details] if args.key?(:locations_details) @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 |