Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1EndpointChainingRule
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1EndpointChainingRule
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/apigee_v1/classes.rb,
lib/google/apis/apigee_v1/representations.rb,
lib/google/apis/apigee_v1/representations.rb
Overview
EndpointChainingRule specifies the proxies contained in a particular deployment group, so that other deployment groups can find them in chaining calls.
Instance Attribute Summary collapse
-
#deployment_group ⇒ String
The deployment group to target for cross-shard chaining calls to these proxies.
-
#proxy_ids ⇒ Array<String>
List of proxy ids which may be found in the given deployment group.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1EndpointChainingRule
constructor
A new instance of GoogleCloudApigeeV1EndpointChainingRule.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1EndpointChainingRule
Returns a new instance of GoogleCloudApigeeV1EndpointChainingRule.
4170 4171 4172 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 4170 def initialize(**args) update!(**args) end |
Instance Attribute Details
#deployment_group ⇒ String
The deployment group to target for cross-shard chaining calls to these proxies.
Corresponds to the JSON property deploymentGroup
4163 4164 4165 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 4163 def deployment_group @deployment_group end |
#proxy_ids ⇒ Array<String>
List of proxy ids which may be found in the given deployment group.
Corresponds to the JSON property proxyIds
4168 4169 4170 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 4168 def proxy_ids @proxy_ids end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4175 4176 4177 4178 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 4175 def update!(**args) @deployment_group = args[:deployment_group] if args.key?(:deployment_group) @proxy_ids = args[:proxy_ids] if args.key?(:proxy_ids) end |