Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1OperationGroup
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1OperationGroup
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/apigee_v1/classes.rb,
generated/google/apis/apigee_v1/representations.rb,
generated/google/apis/apigee_v1/representations.rb
Overview
List of operation configuration details associated with Apigee API proxies or remote services. Remote services are non-Apigee proxies, such as Istio-Envoy.
Instance Attribute Summary collapse
-
#operation_config_type ⇒ String
Flag that specifes whether the configuration is for Apigee API proxy or a remote service.
-
#operation_configs ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1OperationConfig>
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1OperationGroup
constructor
A new instance of GoogleCloudApigeeV1OperationGroup.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1OperationGroup
Returns a new instance of GoogleCloudApigeeV1OperationGroup.
4080 4081 4082 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 4080 def initialize(**args) update!(**args) end |
Instance Attribute Details
#operation_config_type ⇒ String
Flag that specifes whether the configuration is for Apigee API proxy or a
remote service. Valid values are proxy
or remoteservice
. Defaults to
proxy
. Set to proxy
when Apigee API proxies are associated with the API
product. Set to remoteservice
when non-Apigee proxies like Istio-Envoy are
associated with the API product.
Corresponds to the JSON property operationConfigType
4072 4073 4074 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 4072 def operation_config_type @operation_config_type end |
#operation_configs ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1OperationConfig>
Required. List of operation configurations for either Apigee API proxies or
other remote services that are associated with this API product.
Corresponds to the JSON property operationConfigs
4078 4079 4080 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 4078 def operation_configs @operation_configs end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4085 4086 4087 4088 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 4085 def update!(**args) @operation_config_type = args[:operation_config_type] if args.key?(:operation_config_type) @operation_configs = args[:operation_configs] if args.key?(:operation_configs) end |