📄 Source: GoogleCloudApigeeV1GraphQLOperationGroup.php
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Apigee;
class GoogleCloudApigeeV1GraphQLOperationGroup extends \Google\Collection
{
protected $collection_key = 'operationConfigs';
/**
* 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.
*
* @var string
*/
public $operationConfigType;
protected $operationConfigsType = GoogleCloudApigeeV1GraphQLOperationConfig::class;
protected $operationConfigsDataType = 'array';
/**
* 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.
*
* @param string $operationConfigType
*/
public function setOperationConfigType($operationConfigType)
{
$this->operationConfigType = $operationConfigType;
}
/**
* @return string
*/
public function getOperationConfigType()
{
return $this->operationConfigType;
}
/**
* Required. List of operation configurations for either Apigee API proxies or
* other remote services that are associated with this API product.
*
* @param GoogleCloudApigeeV1GraphQLOperationConfig[] $operationConfigs
*/
public function setOperationConfigs($operationConfigs)
{
$this->operationConfigs = $operationConfigs;
}
/**
* @return GoogleCloudApigeeV1GraphQLOperationConfig[]
*/
public function getOperationConfigs()
{
return $this->operationConfigs;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudApigeeV1GraphQLOperationGroup::class, 'Google_Service_Apigee_GoogleCloudApigeeV1GraphQLOperationGroup');
← Back