Class: Google::Apis::NetworksecurityV1beta1::InterceptEndpointGroup
- Inherits:
-
Object
- Object
- Google::Apis::NetworksecurityV1beta1::InterceptEndpointGroup
- 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
-
#associations ⇒ Array<Google::Apis::NetworksecurityV1beta1::InterceptEndpointGroupAssociationDetails>
Output only.
-
#create_time ⇒ String
Output only.
-
#description ⇒ String
Optional.
-
#intercept_deployment_group ⇒ String
Required.
-
#labels ⇒ Hash<String,String>
Optional.
-
#name ⇒ String
Immutable.
-
#reconciling ⇒ Boolean
(also: #reconciling?)
Output only.
-
#state ⇒ String
Output only.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InterceptEndpointGroup
constructor
A new instance of InterceptEndpointGroup.
-
#update!(**args) ⇒ Object
Update properties of this object.
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
#associations ⇒ Array<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_time ⇒ String
Output only. [Output only] Create time stamp
Corresponds to the JSON property createTime
1916 1917 1918 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1916 def create_time @create_time end |
#description ⇒ String
Optional. User-provided description of the endpoint group. Used as additional
context for the endpoint group.
Corresponds to the JSON property description
1922 1923 1924 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1922 def description @description end |
#intercept_deployment_group ⇒ String
Required. Immutable. The Intercept Deployment Group that this resource is
connected to. Format is: projects/
project/locations/global/
interceptDeploymentGroups/
interceptDeploymentGroup`
Corresponds to the JSON property
interceptDeploymentGroup`
1929 1930 1931 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1929 def intercept_deployment_group @intercept_deployment_group end |
#labels ⇒ Hash<String,String>
Optional. Labels as key value pairs
Corresponds to the JSON property labels
1934 1935 1936 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1934 def labels @labels end |
#name ⇒ String
Immutable. Identifier. The name of the InterceptEndpointGroup.
Corresponds to the JSON property name
1939 1940 1941 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1939 def name @name 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
1945 1946 1947 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1945 def reconciling @reconciling end |
#state ⇒ String
Output only. Current state of the endpoint group.
Corresponds to the JSON property state
1951 1952 1953 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1951 def state @state end |
#update_time ⇒ String
Output only. [Output only] Update time stamp
Corresponds to the JSON property updateTime
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 |