Class: Google::Apis::NetworksecurityV1beta1::InterceptEndpointGroup

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 InterceptEndpointGroup object.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ InterceptEndpointGroup

Returns a new instance of InterceptEndpointGroup.



1972
1973
1974
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1972

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

Instance Attribute Details

#associationsArray<Google::Apis::NetworksecurityV1beta1::InterceptEndpointGroupAssociationDetails>

Output only. List of Intercept Endpoint Group Associations that are associated to this endpoint group. Corresponds to the JSON property associations



1925
1926
1927
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1925

def associations
  @associations
end

#create_timeString

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

Returns:

  • (String)


1930
1931
1932
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1930

def create_time
  @create_time
end

#descriptionString

Optional. User-provided description of the endpoint group. Used as additional context for the endpoint group. Corresponds to the JSON property description

Returns:

  • (String)


1936
1937
1938
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1936

def description
  @description
end

#intercept_deployment_groupString

Required. Immutable. The Intercept Deployment Group that this resource is connected to. Format is: projects/project/locations/global/ interceptDeploymentGroups/interceptDeploymentGroup` Corresponds to the JSON propertyinterceptDeploymentGroup`

Returns:

  • (String)


1943
1944
1945
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1943

def intercept_deployment_group
  @intercept_deployment_group
end

#labelsHash<String,String>

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

Returns:

  • (Hash<String,String>)


1948
1949
1950
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1948

def labels
  @labels
end

#nameString

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

Returns:

  • (String)


1953
1954
1955
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1953

def name
  @name
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)


1959
1960
1961
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1959

def reconciling
  @reconciling
end

#stateString

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

Returns:

  • (String)


1965
1966
1967
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1965

def state
  @state
end

#update_timeString

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

Returns:

  • (String)


1970
1971
1972
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1970

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1977

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