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.



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

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



1911
1912
1913
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1911

def associations
  @associations
end

#create_timeString

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

Returns:

  • (String)


1916
1917
1918
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1916

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)


1922
1923
1924
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1922

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)


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

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


1934
1935
1936
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1934

def labels
  @labels
end

#nameString

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

Returns:

  • (String)


1939
1940
1941
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1939

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)


1945
1946
1947
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1945

def reconciling
  @reconciling
end

#stateString

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

Returns:

  • (String)


1951
1952
1953
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1951

def state
  @state
end

#update_timeString

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

Returns:

  • (String)


1956
1957
1958
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1956

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1963

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