Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1GraphQlOperationGroup

Inherits:
Object
  • Object
show all
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

List of graphQL 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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1GraphQlOperationGroup

Returns a new instance of GoogleCloudApigeeV1GraphQlOperationGroup.



5090
5091
5092
# File 'lib/google/apis/apigee_v1/classes.rb', line 5090

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

Instance Attribute Details

#operation_config_typeString

Flag that specifies whether the configuration is for Apigee API proxy or a remote service. Valid values include 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

Returns:

  • (String)


5082
5083
5084
# File 'lib/google/apis/apigee_v1/classes.rb', line 5082

def operation_config_type
  @operation_config_type
end

#operation_configsArray<Google::Apis::ApigeeV1::GoogleCloudApigeeV1GraphQlOperationConfig>

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



5088
5089
5090
# File 'lib/google/apis/apigee_v1/classes.rb', line 5088

def operation_configs
  @operation_configs
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5095
5096
5097
5098
# File 'lib/google/apis/apigee_v1/classes.rb', line 5095

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