Initial commit

This commit is contained in:
Local Administrator
2025-04-18 10:32:42 +02:00
commit b83134aca3
29643 changed files with 3045897 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
<?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\ApigeeRegistry\Resource;
/**
* The "projects" collection of methods.
* Typical usage is:
* <code>
* $apigeeregistryService = new Google\Service\ApigeeRegistry(...);
* $projects = $apigeeregistryService->projects;
* </code>
*/
class Projects extends \Google\Service\Resource
{
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Projects::class, 'Google_Service_ApigeeRegistry_Resource_Projects');

View File

@@ -0,0 +1,74 @@
<?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\ApigeeRegistry\Resource;
use Google\Service\ApigeeRegistry\ListLocationsResponse;
use Google\Service\ApigeeRegistry\Location;
/**
* The "locations" collection of methods.
* Typical usage is:
* <code>
* $apigeeregistryService = new Google\Service\ApigeeRegistry(...);
* $locations = $apigeeregistryService->projects_locations;
* </code>
*/
class ProjectsLocations extends \Google\Service\Resource
{
/**
* Gets information about a location. (locations.get)
*
* @param string $name Resource name for the location.
* @param array $optParams Optional parameters.
* @return Location
* @throws \Google\Service\Exception
*/
public function get($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('get', [$params], Location::class);
}
/**
* Lists information about the supported locations for this service.
* (locations.listProjectsLocations)
*
* @param string $name The resource that owns the locations collection, if
* applicable.
* @param array $optParams Optional parameters.
*
* @opt_param string filter A filter to narrow down results to a preferred
* subset. The filtering language accepts strings like `"displayName=tokyo"`,
* and is documented in more detail in [AIP-160](https://google.aip.dev/160).
* @opt_param int pageSize The maximum number of results to return. If not set,
* the service selects a default.
* @opt_param string pageToken A page token received from the `next_page_token`
* field in the response. Send that page token to receive the subsequent page.
* @return ListLocationsResponse
* @throws \Google\Service\Exception
*/
public function listProjectsLocations($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('list', [$params], ListLocationsResponse::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ProjectsLocations::class, 'Google_Service_ApigeeRegistry_Resource_ProjectsLocations');

View File

@@ -0,0 +1,220 @@
<?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\ApigeeRegistry\Resource;
use Google\Service\ApigeeRegistry\Api;
use Google\Service\ApigeeRegistry\ApigeeregistryEmpty;
use Google\Service\ApigeeRegistry\ListApisResponse;
use Google\Service\ApigeeRegistry\Policy;
use Google\Service\ApigeeRegistry\SetIamPolicyRequest;
use Google\Service\ApigeeRegistry\TestIamPermissionsRequest;
use Google\Service\ApigeeRegistry\TestIamPermissionsResponse;
/**
* The "apis" collection of methods.
* Typical usage is:
* <code>
* $apigeeregistryService = new Google\Service\ApigeeRegistry(...);
* $apis = $apigeeregistryService->projects_locations_apis;
* </code>
*/
class ProjectsLocationsApis extends \Google\Service\Resource
{
/**
* Creates a specified API. (apis.create)
*
* @param string $parent Required. The parent, which owns this collection of
* APIs. Format: `projects/locations`
* @param Api $postBody
* @param array $optParams Optional parameters.
*
* @opt_param string apiId Required. The ID to use for the API, which will
* become the final component of the API's resource name. This value should be
* 4-63 characters, and valid characters are /a-z-/. Following AIP-162, IDs must
* not have the form of a UUID.
* @return Api
* @throws \Google\Service\Exception
*/
public function create($parent, Api $postBody, $optParams = [])
{
$params = ['parent' => $parent, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('create', [$params], Api::class);
}
/**
* Removes a specified API and all of the resources that it owns. (apis.delete)
*
* @param string $name Required. The name of the API to delete. Format:
* `projects/locations/apis`
* @param array $optParams Optional parameters.
*
* @opt_param bool force If set to true, any child resources will also be
* deleted. (Otherwise, the request will only work if there are no child
* resources.)
* @return ApigeeregistryEmpty
* @throws \Google\Service\Exception
*/
public function delete($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('delete', [$params], ApigeeregistryEmpty::class);
}
/**
* Returns a specified API. (apis.get)
*
* @param string $name Required. The name of the API to retrieve. Format:
* `projects/locations/apis`
* @param array $optParams Optional parameters.
* @return Api
* @throws \Google\Service\Exception
*/
public function get($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('get', [$params], Api::class);
}
/**
* Gets the access control policy for a resource. Returns an empty policy if the
* resource exists and does not have a policy set. (apis.getIamPolicy)
*
* @param string $resource REQUIRED: The resource for which the policy is being
* requested. See [Resource
* names](https://cloud.google.com/apis/design/resource_names) for the
* appropriate value for this field.
* @param array $optParams Optional parameters.
*
* @opt_param int options.requestedPolicyVersion Optional. The maximum policy
* version that will be used to format the policy. Valid values are 0, 1, and 3.
* Requests specifying an invalid value will be rejected. Requests for policies
* with any conditional role bindings must specify version 3. Policies with no
* conditional role bindings may specify any valid value or leave the field
* unset. The policy in the response might use the policy version that you
* specified, or it might use a lower policy version. For example, if you
* specify version 3, but the policy has no conditional role bindings, the
* response uses version 1. To learn which resources support conditions in their
* IAM policies, see the [IAM
* documentation](https://cloud.google.com/iam/help/conditions/resource-
* policies).
* @return Policy
* @throws \Google\Service\Exception
*/
public function getIamPolicy($resource, $optParams = [])
{
$params = ['resource' => $resource];
$params = array_merge($params, $optParams);
return $this->call('getIamPolicy', [$params], Policy::class);
}
/**
* Returns matching APIs. (apis.listProjectsLocationsApis)
*
* @param string $parent Required. The parent, which owns this collection of
* APIs. Format: `projects/locations`
* @param array $optParams Optional parameters.
*
* @opt_param string filter An expression that can be used to filter the list.
* Filters use the Common Expression Language and can refer to all message
* fields.
* @opt_param string orderBy A comma-separated list of fields, e.g. "foo,bar"
* Fields can be sorted in descending order using the "desc" identifier, e.g.
* "foo desc,bar"
* @opt_param int pageSize The maximum number of APIs to return. The service may
* return fewer than this value. If unspecified, at most 50 values will be
* returned. The maximum is 1000; values above 1000 will be coerced to 1000.
* @opt_param string pageToken A page token, received from a previous `ListApis`
* call. Provide this to retrieve the subsequent page. When paginating, all
* other parameters provided to `ListApis` must match the call that provided the
* page token.
* @return ListApisResponse
* @throws \Google\Service\Exception
*/
public function listProjectsLocationsApis($parent, $optParams = [])
{
$params = ['parent' => $parent];
$params = array_merge($params, $optParams);
return $this->call('list', [$params], ListApisResponse::class);
}
/**
* Used to modify a specified API. (apis.patch)
*
* @param string $name Resource name.
* @param Api $postBody
* @param array $optParams Optional parameters.
*
* @opt_param bool allowMissing If set to true, and the API is not found, a new
* API will be created. In this situation, `update_mask` is ignored.
* @opt_param string updateMask The list of fields to be updated. If omitted,
* all fields are updated that are set in the request message (fields set to
* default values are ignored). If an asterisk "*" is specified, all fields are
* updated, including fields that are unspecified/default in the request.
* @return Api
* @throws \Google\Service\Exception
*/
public function patch($name, Api $postBody, $optParams = [])
{
$params = ['name' => $name, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('patch', [$params], Api::class);
}
/**
* Sets the access control policy on the specified resource. Replaces any
* existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and
* `PERMISSION_DENIED` errors. (apis.setIamPolicy)
*
* @param string $resource REQUIRED: The resource for which the policy is being
* specified. See [Resource
* names](https://cloud.google.com/apis/design/resource_names) for the
* appropriate value for this field.
* @param SetIamPolicyRequest $postBody
* @param array $optParams Optional parameters.
* @return Policy
* @throws \Google\Service\Exception
*/
public function setIamPolicy($resource, SetIamPolicyRequest $postBody, $optParams = [])
{
$params = ['resource' => $resource, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('setIamPolicy', [$params], Policy::class);
}
/**
* Returns permissions that a caller has on the specified resource. If the
* resource does not exist, this will return an empty set of permissions, not a
* `NOT_FOUND` error. Note: This operation is designed to be used for building
* permission-aware UIs and command-line tools, not for authorization checking.
* This operation may "fail open" without warning. (apis.testIamPermissions)
*
* @param string $resource REQUIRED: The resource for which the policy detail is
* being requested. See [Resource
* names](https://cloud.google.com/apis/design/resource_names) for the
* appropriate value for this field.
* @param TestIamPermissionsRequest $postBody
* @param array $optParams Optional parameters.
* @return TestIamPermissionsResponse
* @throws \Google\Service\Exception
*/
public function testIamPermissions($resource, TestIamPermissionsRequest $postBody, $optParams = [])
{
$params = ['resource' => $resource, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('testIamPermissions', [$params], TestIamPermissionsResponse::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ProjectsLocationsApis::class, 'Google_Service_ApigeeRegistry_Resource_ProjectsLocationsApis');

View File

@@ -0,0 +1,230 @@
<?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\ApigeeRegistry\Resource;
use Google\Service\ApigeeRegistry\ApigeeregistryEmpty;
use Google\Service\ApigeeRegistry\Artifact;
use Google\Service\ApigeeRegistry\HttpBody;
use Google\Service\ApigeeRegistry\ListArtifactsResponse;
use Google\Service\ApigeeRegistry\Policy;
use Google\Service\ApigeeRegistry\SetIamPolicyRequest;
use Google\Service\ApigeeRegistry\TestIamPermissionsRequest;
use Google\Service\ApigeeRegistry\TestIamPermissionsResponse;
/**
* The "artifacts" collection of methods.
* Typical usage is:
* <code>
* $apigeeregistryService = new Google\Service\ApigeeRegistry(...);
* $artifacts = $apigeeregistryService->projects_locations_apis_artifacts;
* </code>
*/
class ProjectsLocationsApisArtifacts extends \Google\Service\Resource
{
/**
* Creates a specified artifact. (artifacts.create)
*
* @param string $parent Required. The parent, which owns this collection of
* artifacts. Format: `{parent}`
* @param Artifact $postBody
* @param array $optParams Optional parameters.
*
* @opt_param string artifactId Required. The ID to use for the artifact, which
* will become the final component of the artifact's resource name. This value
* should be 4-63 characters, and valid characters are /a-z-/. Following
* AIP-162, IDs must not have the form of a UUID.
* @return Artifact
* @throws \Google\Service\Exception
*/
public function create($parent, Artifact $postBody, $optParams = [])
{
$params = ['parent' => $parent, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('create', [$params], Artifact::class);
}
/**
* Removes a specified artifact. (artifacts.delete)
*
* @param string $name Required. The name of the artifact to delete. Format:
* `{parent}/artifacts`
* @param array $optParams Optional parameters.
* @return ApigeeregistryEmpty
* @throws \Google\Service\Exception
*/
public function delete($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('delete', [$params], ApigeeregistryEmpty::class);
}
/**
* Returns a specified artifact. (artifacts.get)
*
* @param string $name Required. The name of the artifact to retrieve. Format:
* `{parent}/artifacts`
* @param array $optParams Optional parameters.
* @return Artifact
* @throws \Google\Service\Exception
*/
public function get($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('get', [$params], Artifact::class);
}
/**
* Returns the contents of a specified artifact. If artifacts are stored with
* GZip compression, the default behavior is to return the artifact uncompressed
* (the mime_type response field indicates the exact format returned).
* (artifacts.getContents)
*
* @param string $name Required. The name of the artifact whose contents should
* be retrieved. Format: `{parent}/artifacts`
* @param array $optParams Optional parameters.
* @return HttpBody
* @throws \Google\Service\Exception
*/
public function getContents($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('getContents', [$params], HttpBody::class);
}
/**
* Gets the access control policy for a resource. Returns an empty policy if the
* resource exists and does not have a policy set. (artifacts.getIamPolicy)
*
* @param string $resource REQUIRED: The resource for which the policy is being
* requested. See [Resource
* names](https://cloud.google.com/apis/design/resource_names) for the
* appropriate value for this field.
* @param array $optParams Optional parameters.
*
* @opt_param int options.requestedPolicyVersion Optional. The maximum policy
* version that will be used to format the policy. Valid values are 0, 1, and 3.
* Requests specifying an invalid value will be rejected. Requests for policies
* with any conditional role bindings must specify version 3. Policies with no
* conditional role bindings may specify any valid value or leave the field
* unset. The policy in the response might use the policy version that you
* specified, or it might use a lower policy version. For example, if you
* specify version 3, but the policy has no conditional role bindings, the
* response uses version 1. To learn which resources support conditions in their
* IAM policies, see the [IAM
* documentation](https://cloud.google.com/iam/help/conditions/resource-
* policies).
* @return Policy
* @throws \Google\Service\Exception
*/
public function getIamPolicy($resource, $optParams = [])
{
$params = ['resource' => $resource];
$params = array_merge($params, $optParams);
return $this->call('getIamPolicy', [$params], Policy::class);
}
/**
* Returns matching artifacts. (artifacts.listProjectsLocationsApisArtifacts)
*
* @param string $parent Required. The parent, which owns this collection of
* artifacts. Format: `{parent}`
* @param array $optParams Optional parameters.
*
* @opt_param string filter An expression that can be used to filter the list.
* Filters use the Common Expression Language and can refer to all message
* fields except contents.
* @opt_param string orderBy A comma-separated list of fields, e.g. "foo,bar"
* Fields can be sorted in descending order using the "desc" identifier, e.g.
* "foo desc,bar"
* @opt_param int pageSize The maximum number of artifacts to return. The
* service may return fewer than this value. If unspecified, at most 50 values
* will be returned. The maximum is 1000; values above 1000 will be coerced to
* 1000.
* @opt_param string pageToken A page token, received from a previous
* `ListArtifacts` call. Provide this to retrieve the subsequent page. When
* paginating, all other parameters provided to `ListArtifacts` must match the
* call that provided the page token.
* @return ListArtifactsResponse
* @throws \Google\Service\Exception
*/
public function listProjectsLocationsApisArtifacts($parent, $optParams = [])
{
$params = ['parent' => $parent];
$params = array_merge($params, $optParams);
return $this->call('list', [$params], ListArtifactsResponse::class);
}
/**
* Used to replace a specified artifact. (artifacts.replaceArtifact)
*
* @param string $name Resource name.
* @param Artifact $postBody
* @param array $optParams Optional parameters.
* @return Artifact
* @throws \Google\Service\Exception
*/
public function replaceArtifact($name, Artifact $postBody, $optParams = [])
{
$params = ['name' => $name, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('replaceArtifact', [$params], Artifact::class);
}
/**
* Sets the access control policy on the specified resource. Replaces any
* existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and
* `PERMISSION_DENIED` errors. (artifacts.setIamPolicy)
*
* @param string $resource REQUIRED: The resource for which the policy is being
* specified. See [Resource
* names](https://cloud.google.com/apis/design/resource_names) for the
* appropriate value for this field.
* @param SetIamPolicyRequest $postBody
* @param array $optParams Optional parameters.
* @return Policy
* @throws \Google\Service\Exception
*/
public function setIamPolicy($resource, SetIamPolicyRequest $postBody, $optParams = [])
{
$params = ['resource' => $resource, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('setIamPolicy', [$params], Policy::class);
}
/**
* Returns permissions that a caller has on the specified resource. If the
* resource does not exist, this will return an empty set of permissions, not a
* `NOT_FOUND` error. Note: This operation is designed to be used for building
* permission-aware UIs and command-line tools, not for authorization checking.
* This operation may "fail open" without warning.
* (artifacts.testIamPermissions)
*
* @param string $resource REQUIRED: The resource for which the policy detail is
* being requested. See [Resource
* names](https://cloud.google.com/apis/design/resource_names) for the
* appropriate value for this field.
* @param TestIamPermissionsRequest $postBody
* @param array $optParams Optional parameters.
* @return TestIamPermissionsResponse
* @throws \Google\Service\Exception
*/
public function testIamPermissions($resource, TestIamPermissionsRequest $postBody, $optParams = [])
{
$params = ['resource' => $resource, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('testIamPermissions', [$params], TestIamPermissionsResponse::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ProjectsLocationsApisArtifacts::class, 'Google_Service_ApigeeRegistry_Resource_ProjectsLocationsApisArtifacts');

View File

@@ -0,0 +1,301 @@
<?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\ApigeeRegistry\Resource;
use Google\Service\ApigeeRegistry\ApiDeployment;
use Google\Service\ApigeeRegistry\ApigeeregistryEmpty;
use Google\Service\ApigeeRegistry\ListApiDeploymentRevisionsResponse;
use Google\Service\ApigeeRegistry\ListApiDeploymentsResponse;
use Google\Service\ApigeeRegistry\Policy;
use Google\Service\ApigeeRegistry\RollbackApiDeploymentRequest;
use Google\Service\ApigeeRegistry\SetIamPolicyRequest;
use Google\Service\ApigeeRegistry\TagApiDeploymentRevisionRequest;
use Google\Service\ApigeeRegistry\TestIamPermissionsRequest;
use Google\Service\ApigeeRegistry\TestIamPermissionsResponse;
/**
* The "deployments" collection of methods.
* Typical usage is:
* <code>
* $apigeeregistryService = new Google\Service\ApigeeRegistry(...);
* $deployments = $apigeeregistryService->projects_locations_apis_deployments;
* </code>
*/
class ProjectsLocationsApisDeployments extends \Google\Service\Resource
{
/**
* Creates a specified deployment. (deployments.create)
*
* @param string $parent Required. The parent, which owns this collection of
* deployments. Format: `projects/locations/apis`
* @param ApiDeployment $postBody
* @param array $optParams Optional parameters.
*
* @opt_param string apiDeploymentId Required. The ID to use for the deployment,
* which will become the final component of the deployment's resource name. This
* value should be 4-63 characters, and valid characters are /a-z-/. Following
* AIP-162, IDs must not have the form of a UUID.
* @return ApiDeployment
* @throws \Google\Service\Exception
*/
public function create($parent, ApiDeployment $postBody, $optParams = [])
{
$params = ['parent' => $parent, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('create', [$params], ApiDeployment::class);
}
/**
* Removes a specified deployment, all revisions, and all child resources (e.g.,
* artifacts). (deployments.delete)
*
* @param string $name Required. The name of the deployment to delete. Format:
* `projects/locations/apis/deployments`
* @param array $optParams Optional parameters.
*
* @opt_param bool force If set to true, any child resources will also be
* deleted. (Otherwise, the request will only work if there are no child
* resources.)
* @return ApigeeregistryEmpty
* @throws \Google\Service\Exception
*/
public function delete($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('delete', [$params], ApigeeregistryEmpty::class);
}
/**
* Deletes a revision of a deployment. (deployments.deleteRevision)
*
* @param string $name Required. The name of the deployment revision to be
* deleted, with a revision ID explicitly included. Example:
* `projects/sample/locations/global/apis/petstore/deployments/prod@c7cfa2a8`
* @param array $optParams Optional parameters.
* @return ApiDeployment
* @throws \Google\Service\Exception
*/
public function deleteRevision($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('deleteRevision', [$params], ApiDeployment::class);
}
/**
* Returns a specified deployment. (deployments.get)
*
* @param string $name Required. The name of the deployment to retrieve. Format:
* `projects/locations/apis/deployments`
* @param array $optParams Optional parameters.
* @return ApiDeployment
* @throws \Google\Service\Exception
*/
public function get($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('get', [$params], ApiDeployment::class);
}
/**
* Gets the access control policy for a resource. Returns an empty policy if the
* resource exists and does not have a policy set. (deployments.getIamPolicy)
*
* @param string $resource REQUIRED: The resource for which the policy is being
* requested. See [Resource
* names](https://cloud.google.com/apis/design/resource_names) for the
* appropriate value for this field.
* @param array $optParams Optional parameters.
*
* @opt_param int options.requestedPolicyVersion Optional. The maximum policy
* version that will be used to format the policy. Valid values are 0, 1, and 3.
* Requests specifying an invalid value will be rejected. Requests for policies
* with any conditional role bindings must specify version 3. Policies with no
* conditional role bindings may specify any valid value or leave the field
* unset. The policy in the response might use the policy version that you
* specified, or it might use a lower policy version. For example, if you
* specify version 3, but the policy has no conditional role bindings, the
* response uses version 1. To learn which resources support conditions in their
* IAM policies, see the [IAM
* documentation](https://cloud.google.com/iam/help/conditions/resource-
* policies).
* @return Policy
* @throws \Google\Service\Exception
*/
public function getIamPolicy($resource, $optParams = [])
{
$params = ['resource' => $resource];
$params = array_merge($params, $optParams);
return $this->call('getIamPolicy', [$params], Policy::class);
}
/**
* Returns matching deployments.
* (deployments.listProjectsLocationsApisDeployments)
*
* @param string $parent Required. The parent, which owns this collection of
* deployments. Format: `projects/locations/apis`
* @param array $optParams Optional parameters.
*
* @opt_param string filter An expression that can be used to filter the list.
* Filters use the Common Expression Language and can refer to all message
* fields.
* @opt_param string orderBy A comma-separated list of fields, e.g. "foo,bar"
* Fields can be sorted in descending order using the "desc" identifier, e.g.
* "foo desc,bar"
* @opt_param int pageSize The maximum number of deployments to return. The
* service may return fewer than this value. If unspecified, at most 50 values
* will be returned. The maximum is 1000; values above 1000 will be coerced to
* 1000.
* @opt_param string pageToken A page token, received from a previous
* `ListApiDeployments` call. Provide this to retrieve the subsequent page. When
* paginating, all other parameters provided to `ListApiDeployments` must match
* the call that provided the page token.
* @return ListApiDeploymentsResponse
* @throws \Google\Service\Exception
*/
public function listProjectsLocationsApisDeployments($parent, $optParams = [])
{
$params = ['parent' => $parent];
$params = array_merge($params, $optParams);
return $this->call('list', [$params], ListApiDeploymentsResponse::class);
}
/**
* Lists all revisions of a deployment. Revisions are returned in descending
* order of revision creation time. (deployments.listRevisions)
*
* @param string $name Required. The name of the deployment to list revisions
* for.
* @param array $optParams Optional parameters.
*
* @opt_param string filter An expression that can be used to filter the list.
* Filters use the Common Expression Language and can refer to all message
* fields.
* @opt_param int pageSize The maximum number of revisions to return per page.
* @opt_param string pageToken The page token, received from a previous
* ListApiDeploymentRevisions call. Provide this to retrieve the subsequent
* page.
* @return ListApiDeploymentRevisionsResponse
* @throws \Google\Service\Exception
*/
public function listRevisions($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('listRevisions', [$params], ListApiDeploymentRevisionsResponse::class);
}
/**
* Used to modify a specified deployment. (deployments.patch)
*
* @param string $name Resource name.
* @param ApiDeployment $postBody
* @param array $optParams Optional parameters.
*
* @opt_param bool allowMissing If set to true, and the deployment is not found,
* a new deployment will be created. In this situation, `update_mask` is
* ignored.
* @opt_param string updateMask The list of fields to be updated. If omitted,
* all fields are updated that are set in the request message (fields set to
* default values are ignored). If an asterisk "*" is specified, all fields are
* updated, including fields that are unspecified/default in the request.
* @return ApiDeployment
* @throws \Google\Service\Exception
*/
public function patch($name, ApiDeployment $postBody, $optParams = [])
{
$params = ['name' => $name, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('patch', [$params], ApiDeployment::class);
}
/**
* Sets the current revision to a specified prior revision. Note that this
* creates a new revision with a new revision ID. (deployments.rollback)
*
* @param string $name Required. The deployment being rolled back.
* @param RollbackApiDeploymentRequest $postBody
* @param array $optParams Optional parameters.
* @return ApiDeployment
* @throws \Google\Service\Exception
*/
public function rollback($name, RollbackApiDeploymentRequest $postBody, $optParams = [])
{
$params = ['name' => $name, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('rollback', [$params], ApiDeployment::class);
}
/**
* Sets the access control policy on the specified resource. Replaces any
* existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and
* `PERMISSION_DENIED` errors. (deployments.setIamPolicy)
*
* @param string $resource REQUIRED: The resource for which the policy is being
* specified. See [Resource
* names](https://cloud.google.com/apis/design/resource_names) for the
* appropriate value for this field.
* @param SetIamPolicyRequest $postBody
* @param array $optParams Optional parameters.
* @return Policy
* @throws \Google\Service\Exception
*/
public function setIamPolicy($resource, SetIamPolicyRequest $postBody, $optParams = [])
{
$params = ['resource' => $resource, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('setIamPolicy', [$params], Policy::class);
}
/**
* Adds a tag to a specified revision of a deployment. (deployments.tagRevision)
*
* @param string $name Required. The name of the deployment to be tagged,
* including the revision ID is optional. If a revision is not specified, it
* will tag the latest revision.
* @param TagApiDeploymentRevisionRequest $postBody
* @param array $optParams Optional parameters.
* @return ApiDeployment
* @throws \Google\Service\Exception
*/
public function tagRevision($name, TagApiDeploymentRevisionRequest $postBody, $optParams = [])
{
$params = ['name' => $name, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('tagRevision', [$params], ApiDeployment::class);
}
/**
* Returns permissions that a caller has on the specified resource. If the
* resource does not exist, this will return an empty set of permissions, not a
* `NOT_FOUND` error. Note: This operation is designed to be used for building
* permission-aware UIs and command-line tools, not for authorization checking.
* This operation may "fail open" without warning.
* (deployments.testIamPermissions)
*
* @param string $resource REQUIRED: The resource for which the policy detail is
* being requested. See [Resource
* names](https://cloud.google.com/apis/design/resource_names) for the
* appropriate value for this field.
* @param TestIamPermissionsRequest $postBody
* @param array $optParams Optional parameters.
* @return TestIamPermissionsResponse
* @throws \Google\Service\Exception
*/
public function testIamPermissions($resource, TestIamPermissionsRequest $postBody, $optParams = [])
{
$params = ['resource' => $resource, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('testIamPermissions', [$params], TestIamPermissionsResponse::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ProjectsLocationsApisDeployments::class, 'Google_Service_ApigeeRegistry_Resource_ProjectsLocationsApisDeployments');

View File

@@ -0,0 +1,153 @@
<?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\ApigeeRegistry\Resource;
use Google\Service\ApigeeRegistry\ApigeeregistryEmpty;
use Google\Service\ApigeeRegistry\Artifact;
use Google\Service\ApigeeRegistry\HttpBody;
use Google\Service\ApigeeRegistry\ListArtifactsResponse;
/**
* The "artifacts" collection of methods.
* Typical usage is:
* <code>
* $apigeeregistryService = new Google\Service\ApigeeRegistry(...);
* $artifacts = $apigeeregistryService->projects_locations_apis_deployments_artifacts;
* </code>
*/
class ProjectsLocationsApisDeploymentsArtifacts extends \Google\Service\Resource
{
/**
* Creates a specified artifact. (artifacts.create)
*
* @param string $parent Required. The parent, which owns this collection of
* artifacts. Format: `{parent}`
* @param Artifact $postBody
* @param array $optParams Optional parameters.
*
* @opt_param string artifactId Required. The ID to use for the artifact, which
* will become the final component of the artifact's resource name. This value
* should be 4-63 characters, and valid characters are /a-z-/. Following
* AIP-162, IDs must not have the form of a UUID.
* @return Artifact
* @throws \Google\Service\Exception
*/
public function create($parent, Artifact $postBody, $optParams = [])
{
$params = ['parent' => $parent, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('create', [$params], Artifact::class);
}
/**
* Removes a specified artifact. (artifacts.delete)
*
* @param string $name Required. The name of the artifact to delete. Format:
* `{parent}/artifacts`
* @param array $optParams Optional parameters.
* @return ApigeeregistryEmpty
* @throws \Google\Service\Exception
*/
public function delete($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('delete', [$params], ApigeeregistryEmpty::class);
}
/**
* Returns a specified artifact. (artifacts.get)
*
* @param string $name Required. The name of the artifact to retrieve. Format:
* `{parent}/artifacts`
* @param array $optParams Optional parameters.
* @return Artifact
* @throws \Google\Service\Exception
*/
public function get($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('get', [$params], Artifact::class);
}
/**
* Returns the contents of a specified artifact. If artifacts are stored with
* GZip compression, the default behavior is to return the artifact uncompressed
* (the mime_type response field indicates the exact format returned).
* (artifacts.getContents)
*
* @param string $name Required. The name of the artifact whose contents should
* be retrieved. Format: `{parent}/artifacts`
* @param array $optParams Optional parameters.
* @return HttpBody
* @throws \Google\Service\Exception
*/
public function getContents($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('getContents', [$params], HttpBody::class);
}
/**
* Returns matching artifacts.
* (artifacts.listProjectsLocationsApisDeploymentsArtifacts)
*
* @param string $parent Required. The parent, which owns this collection of
* artifacts. Format: `{parent}`
* @param array $optParams Optional parameters.
*
* @opt_param string filter An expression that can be used to filter the list.
* Filters use the Common Expression Language and can refer to all message
* fields except contents.
* @opt_param string orderBy A comma-separated list of fields, e.g. "foo,bar"
* Fields can be sorted in descending order using the "desc" identifier, e.g.
* "foo desc,bar"
* @opt_param int pageSize The maximum number of artifacts to return. The
* service may return fewer than this value. If unspecified, at most 50 values
* will be returned. The maximum is 1000; values above 1000 will be coerced to
* 1000.
* @opt_param string pageToken A page token, received from a previous
* `ListArtifacts` call. Provide this to retrieve the subsequent page. When
* paginating, all other parameters provided to `ListArtifacts` must match the
* call that provided the page token.
* @return ListArtifactsResponse
* @throws \Google\Service\Exception
*/
public function listProjectsLocationsApisDeploymentsArtifacts($parent, $optParams = [])
{
$params = ['parent' => $parent];
$params = array_merge($params, $optParams);
return $this->call('list', [$params], ListArtifactsResponse::class);
}
/**
* Used to replace a specified artifact. (artifacts.replaceArtifact)
*
* @param string $name Resource name.
* @param Artifact $postBody
* @param array $optParams Optional parameters.
* @return Artifact
* @throws \Google\Service\Exception
*/
public function replaceArtifact($name, Artifact $postBody, $optParams = [])
{
$params = ['name' => $name, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('replaceArtifact', [$params], Artifact::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ProjectsLocationsApisDeploymentsArtifacts::class, 'Google_Service_ApigeeRegistry_Resource_ProjectsLocationsApisDeploymentsArtifacts');

View File

@@ -0,0 +1,221 @@
<?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\ApigeeRegistry\Resource;
use Google\Service\ApigeeRegistry\ApiVersion;
use Google\Service\ApigeeRegistry\ApigeeregistryEmpty;
use Google\Service\ApigeeRegistry\ListApiVersionsResponse;
use Google\Service\ApigeeRegistry\Policy;
use Google\Service\ApigeeRegistry\SetIamPolicyRequest;
use Google\Service\ApigeeRegistry\TestIamPermissionsRequest;
use Google\Service\ApigeeRegistry\TestIamPermissionsResponse;
/**
* The "versions" collection of methods.
* Typical usage is:
* <code>
* $apigeeregistryService = new Google\Service\ApigeeRegistry(...);
* $versions = $apigeeregistryService->projects_locations_apis_versions;
* </code>
*/
class ProjectsLocationsApisVersions extends \Google\Service\Resource
{
/**
* Creates a specified version. (versions.create)
*
* @param string $parent Required. The parent, which owns this collection of
* versions. Format: `projects/locations/apis`
* @param ApiVersion $postBody
* @param array $optParams Optional parameters.
*
* @opt_param string apiVersionId Required. The ID to use for the version, which
* will become the final component of the version's resource name. This value
* should be 1-63 characters, and valid characters are /a-z-/. Following
* AIP-162, IDs must not have the form of a UUID.
* @return ApiVersion
* @throws \Google\Service\Exception
*/
public function create($parent, ApiVersion $postBody, $optParams = [])
{
$params = ['parent' => $parent, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('create', [$params], ApiVersion::class);
}
/**
* Removes a specified version and all of the resources that it owns.
* (versions.delete)
*
* @param string $name Required. The name of the version to delete. Format:
* `projects/locations/apis/versions`
* @param array $optParams Optional parameters.
*
* @opt_param bool force If set to true, any child resources will also be
* deleted. (Otherwise, the request will only work if there are no child
* resources.)
* @return ApigeeregistryEmpty
* @throws \Google\Service\Exception
*/
public function delete($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('delete', [$params], ApigeeregistryEmpty::class);
}
/**
* Returns a specified version. (versions.get)
*
* @param string $name Required. The name of the version to retrieve. Format:
* `projects/locations/apis/versions`
* @param array $optParams Optional parameters.
* @return ApiVersion
* @throws \Google\Service\Exception
*/
public function get($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('get', [$params], ApiVersion::class);
}
/**
* Gets the access control policy for a resource. Returns an empty policy if the
* resource exists and does not have a policy set. (versions.getIamPolicy)
*
* @param string $resource REQUIRED: The resource for which the policy is being
* requested. See [Resource
* names](https://cloud.google.com/apis/design/resource_names) for the
* appropriate value for this field.
* @param array $optParams Optional parameters.
*
* @opt_param int options.requestedPolicyVersion Optional. The maximum policy
* version that will be used to format the policy. Valid values are 0, 1, and 3.
* Requests specifying an invalid value will be rejected. Requests for policies
* with any conditional role bindings must specify version 3. Policies with no
* conditional role bindings may specify any valid value or leave the field
* unset. The policy in the response might use the policy version that you
* specified, or it might use a lower policy version. For example, if you
* specify version 3, but the policy has no conditional role bindings, the
* response uses version 1. To learn which resources support conditions in their
* IAM policies, see the [IAM
* documentation](https://cloud.google.com/iam/help/conditions/resource-
* policies).
* @return Policy
* @throws \Google\Service\Exception
*/
public function getIamPolicy($resource, $optParams = [])
{
$params = ['resource' => $resource];
$params = array_merge($params, $optParams);
return $this->call('getIamPolicy', [$params], Policy::class);
}
/**
* Returns matching versions. (versions.listProjectsLocationsApisVersions)
*
* @param string $parent Required. The parent, which owns this collection of
* versions. Format: `projects/locations/apis`
* @param array $optParams Optional parameters.
*
* @opt_param string filter An expression that can be used to filter the list.
* Filters use the Common Expression Language and can refer to all message
* fields.
* @opt_param string orderBy A comma-separated list of fields, e.g. "foo,bar"
* Fields can be sorted in descending order using the "desc" identifier, e.g.
* "foo desc,bar"
* @opt_param int pageSize The maximum number of versions to return. The service
* may return fewer than this value. If unspecified, at most 50 values will be
* returned. The maximum is 1000; values above 1000 will be coerced to 1000.
* @opt_param string pageToken A page token, received from a previous
* `ListApiVersions` call. Provide this to retrieve the subsequent page. When
* paginating, all other parameters provided to `ListApiVersions` must match the
* call that provided the page token.
* @return ListApiVersionsResponse
* @throws \Google\Service\Exception
*/
public function listProjectsLocationsApisVersions($parent, $optParams = [])
{
$params = ['parent' => $parent];
$params = array_merge($params, $optParams);
return $this->call('list', [$params], ListApiVersionsResponse::class);
}
/**
* Used to modify a specified version. (versions.patch)
*
* @param string $name Resource name.
* @param ApiVersion $postBody
* @param array $optParams Optional parameters.
*
* @opt_param bool allowMissing If set to true, and the version is not found, a
* new version will be created. In this situation, `update_mask` is ignored.
* @opt_param string updateMask The list of fields to be updated. If omitted,
* all fields are updated that are set in the request message (fields set to
* default values are ignored). If an asterisk "*" is specified, all fields are
* updated, including fields that are unspecified/default in the request.
* @return ApiVersion
* @throws \Google\Service\Exception
*/
public function patch($name, ApiVersion $postBody, $optParams = [])
{
$params = ['name' => $name, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('patch', [$params], ApiVersion::class);
}
/**
* Sets the access control policy on the specified resource. Replaces any
* existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and
* `PERMISSION_DENIED` errors. (versions.setIamPolicy)
*
* @param string $resource REQUIRED: The resource for which the policy is being
* specified. See [Resource
* names](https://cloud.google.com/apis/design/resource_names) for the
* appropriate value for this field.
* @param SetIamPolicyRequest $postBody
* @param array $optParams Optional parameters.
* @return Policy
* @throws \Google\Service\Exception
*/
public function setIamPolicy($resource, SetIamPolicyRequest $postBody, $optParams = [])
{
$params = ['resource' => $resource, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('setIamPolicy', [$params], Policy::class);
}
/**
* Returns permissions that a caller has on the specified resource. If the
* resource does not exist, this will return an empty set of permissions, not a
* `NOT_FOUND` error. Note: This operation is designed to be used for building
* permission-aware UIs and command-line tools, not for authorization checking.
* This operation may "fail open" without warning. (versions.testIamPermissions)
*
* @param string $resource REQUIRED: The resource for which the policy detail is
* being requested. See [Resource
* names](https://cloud.google.com/apis/design/resource_names) for the
* appropriate value for this field.
* @param TestIamPermissionsRequest $postBody
* @param array $optParams Optional parameters.
* @return TestIamPermissionsResponse
* @throws \Google\Service\Exception
*/
public function testIamPermissions($resource, TestIamPermissionsRequest $postBody, $optParams = [])
{
$params = ['resource' => $resource, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('testIamPermissions', [$params], TestIamPermissionsResponse::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ProjectsLocationsApisVersions::class, 'Google_Service_ApigeeRegistry_Resource_ProjectsLocationsApisVersions');

View File

@@ -0,0 +1,231 @@
<?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\ApigeeRegistry\Resource;
use Google\Service\ApigeeRegistry\ApigeeregistryEmpty;
use Google\Service\ApigeeRegistry\Artifact;
use Google\Service\ApigeeRegistry\HttpBody;
use Google\Service\ApigeeRegistry\ListArtifactsResponse;
use Google\Service\ApigeeRegistry\Policy;
use Google\Service\ApigeeRegistry\SetIamPolicyRequest;
use Google\Service\ApigeeRegistry\TestIamPermissionsRequest;
use Google\Service\ApigeeRegistry\TestIamPermissionsResponse;
/**
* The "artifacts" collection of methods.
* Typical usage is:
* <code>
* $apigeeregistryService = new Google\Service\ApigeeRegistry(...);
* $artifacts = $apigeeregistryService->projects_locations_apis_versions_artifacts;
* </code>
*/
class ProjectsLocationsApisVersionsArtifacts extends \Google\Service\Resource
{
/**
* Creates a specified artifact. (artifacts.create)
*
* @param string $parent Required. The parent, which owns this collection of
* artifacts. Format: `{parent}`
* @param Artifact $postBody
* @param array $optParams Optional parameters.
*
* @opt_param string artifactId Required. The ID to use for the artifact, which
* will become the final component of the artifact's resource name. This value
* should be 4-63 characters, and valid characters are /a-z-/. Following
* AIP-162, IDs must not have the form of a UUID.
* @return Artifact
* @throws \Google\Service\Exception
*/
public function create($parent, Artifact $postBody, $optParams = [])
{
$params = ['parent' => $parent, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('create', [$params], Artifact::class);
}
/**
* Removes a specified artifact. (artifacts.delete)
*
* @param string $name Required. The name of the artifact to delete. Format:
* `{parent}/artifacts`
* @param array $optParams Optional parameters.
* @return ApigeeregistryEmpty
* @throws \Google\Service\Exception
*/
public function delete($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('delete', [$params], ApigeeregistryEmpty::class);
}
/**
* Returns a specified artifact. (artifacts.get)
*
* @param string $name Required. The name of the artifact to retrieve. Format:
* `{parent}/artifacts`
* @param array $optParams Optional parameters.
* @return Artifact
* @throws \Google\Service\Exception
*/
public function get($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('get', [$params], Artifact::class);
}
/**
* Returns the contents of a specified artifact. If artifacts are stored with
* GZip compression, the default behavior is to return the artifact uncompressed
* (the mime_type response field indicates the exact format returned).
* (artifacts.getContents)
*
* @param string $name Required. The name of the artifact whose contents should
* be retrieved. Format: `{parent}/artifacts`
* @param array $optParams Optional parameters.
* @return HttpBody
* @throws \Google\Service\Exception
*/
public function getContents($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('getContents', [$params], HttpBody::class);
}
/**
* Gets the access control policy for a resource. Returns an empty policy if the
* resource exists and does not have a policy set. (artifacts.getIamPolicy)
*
* @param string $resource REQUIRED: The resource for which the policy is being
* requested. See [Resource
* names](https://cloud.google.com/apis/design/resource_names) for the
* appropriate value for this field.
* @param array $optParams Optional parameters.
*
* @opt_param int options.requestedPolicyVersion Optional. The maximum policy
* version that will be used to format the policy. Valid values are 0, 1, and 3.
* Requests specifying an invalid value will be rejected. Requests for policies
* with any conditional role bindings must specify version 3. Policies with no
* conditional role bindings may specify any valid value or leave the field
* unset. The policy in the response might use the policy version that you
* specified, or it might use a lower policy version. For example, if you
* specify version 3, but the policy has no conditional role bindings, the
* response uses version 1. To learn which resources support conditions in their
* IAM policies, see the [IAM
* documentation](https://cloud.google.com/iam/help/conditions/resource-
* policies).
* @return Policy
* @throws \Google\Service\Exception
*/
public function getIamPolicy($resource, $optParams = [])
{
$params = ['resource' => $resource];
$params = array_merge($params, $optParams);
return $this->call('getIamPolicy', [$params], Policy::class);
}
/**
* Returns matching artifacts.
* (artifacts.listProjectsLocationsApisVersionsArtifacts)
*
* @param string $parent Required. The parent, which owns this collection of
* artifacts. Format: `{parent}`
* @param array $optParams Optional parameters.
*
* @opt_param string filter An expression that can be used to filter the list.
* Filters use the Common Expression Language and can refer to all message
* fields except contents.
* @opt_param string orderBy A comma-separated list of fields, e.g. "foo,bar"
* Fields can be sorted in descending order using the "desc" identifier, e.g.
* "foo desc,bar"
* @opt_param int pageSize The maximum number of artifacts to return. The
* service may return fewer than this value. If unspecified, at most 50 values
* will be returned. The maximum is 1000; values above 1000 will be coerced to
* 1000.
* @opt_param string pageToken A page token, received from a previous
* `ListArtifacts` call. Provide this to retrieve the subsequent page. When
* paginating, all other parameters provided to `ListArtifacts` must match the
* call that provided the page token.
* @return ListArtifactsResponse
* @throws \Google\Service\Exception
*/
public function listProjectsLocationsApisVersionsArtifacts($parent, $optParams = [])
{
$params = ['parent' => $parent];
$params = array_merge($params, $optParams);
return $this->call('list', [$params], ListArtifactsResponse::class);
}
/**
* Used to replace a specified artifact. (artifacts.replaceArtifact)
*
* @param string $name Resource name.
* @param Artifact $postBody
* @param array $optParams Optional parameters.
* @return Artifact
* @throws \Google\Service\Exception
*/
public function replaceArtifact($name, Artifact $postBody, $optParams = [])
{
$params = ['name' => $name, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('replaceArtifact', [$params], Artifact::class);
}
/**
* Sets the access control policy on the specified resource. Replaces any
* existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and
* `PERMISSION_DENIED` errors. (artifacts.setIamPolicy)
*
* @param string $resource REQUIRED: The resource for which the policy is being
* specified. See [Resource
* names](https://cloud.google.com/apis/design/resource_names) for the
* appropriate value for this field.
* @param SetIamPolicyRequest $postBody
* @param array $optParams Optional parameters.
* @return Policy
* @throws \Google\Service\Exception
*/
public function setIamPolicy($resource, SetIamPolicyRequest $postBody, $optParams = [])
{
$params = ['resource' => $resource, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('setIamPolicy', [$params], Policy::class);
}
/**
* Returns permissions that a caller has on the specified resource. If the
* resource does not exist, this will return an empty set of permissions, not a
* `NOT_FOUND` error. Note: This operation is designed to be used for building
* permission-aware UIs and command-line tools, not for authorization checking.
* This operation may "fail open" without warning.
* (artifacts.testIamPermissions)
*
* @param string $resource REQUIRED: The resource for which the policy detail is
* being requested. See [Resource
* names](https://cloud.google.com/apis/design/resource_names) for the
* appropriate value for this field.
* @param TestIamPermissionsRequest $postBody
* @param array $optParams Optional parameters.
* @return TestIamPermissionsResponse
* @throws \Google\Service\Exception
*/
public function testIamPermissions($resource, TestIamPermissionsRequest $postBody, $optParams = [])
{
$params = ['resource' => $resource, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('testIamPermissions', [$params], TestIamPermissionsResponse::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ProjectsLocationsApisVersionsArtifacts::class, 'Google_Service_ApigeeRegistry_Resource_ProjectsLocationsApisVersionsArtifacts');

View File

@@ -0,0 +1,314 @@
<?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\ApigeeRegistry\Resource;
use Google\Service\ApigeeRegistry\ApiSpec;
use Google\Service\ApigeeRegistry\ApigeeregistryEmpty;
use Google\Service\ApigeeRegistry\HttpBody;
use Google\Service\ApigeeRegistry\ListApiSpecRevisionsResponse;
use Google\Service\ApigeeRegistry\ListApiSpecsResponse;
use Google\Service\ApigeeRegistry\Policy;
use Google\Service\ApigeeRegistry\RollbackApiSpecRequest;
use Google\Service\ApigeeRegistry\SetIamPolicyRequest;
use Google\Service\ApigeeRegistry\TagApiSpecRevisionRequest;
use Google\Service\ApigeeRegistry\TestIamPermissionsRequest;
use Google\Service\ApigeeRegistry\TestIamPermissionsResponse;
/**
* The "specs" collection of methods.
* Typical usage is:
* <code>
* $apigeeregistryService = new Google\Service\ApigeeRegistry(...);
* $specs = $apigeeregistryService->projects_locations_apis_versions_specs;
* </code>
*/
class ProjectsLocationsApisVersionsSpecs extends \Google\Service\Resource
{
/**
* Creates a specified spec. (specs.create)
*
* @param string $parent Required. The parent, which owns this collection of
* specs. Format: `projects/locations/apis/versions`
* @param ApiSpec $postBody
* @param array $optParams Optional parameters.
*
* @opt_param string apiSpecId Required. The ID to use for the spec, which will
* become the final component of the spec's resource name. This value should be
* 4-63 characters, and valid characters are /a-z-/. Following AIP-162, IDs must
* not have the form of a UUID.
* @return ApiSpec
* @throws \Google\Service\Exception
*/
public function create($parent, ApiSpec $postBody, $optParams = [])
{
$params = ['parent' => $parent, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('create', [$params], ApiSpec::class);
}
/**
* Removes a specified spec, all revisions, and all child resources (e.g.,
* artifacts). (specs.delete)
*
* @param string $name Required. The name of the spec to delete. Format:
* `projects/locations/apis/versions/specs`
* @param array $optParams Optional parameters.
*
* @opt_param bool force If set to true, any child resources will also be
* deleted. (Otherwise, the request will only work if there are no child
* resources.)
* @return ApigeeregistryEmpty
* @throws \Google\Service\Exception
*/
public function delete($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('delete', [$params], ApigeeregistryEmpty::class);
}
/**
* Deletes a revision of a spec. (specs.deleteRevision)
*
* @param string $name Required. The name of the spec revision to be deleted,
* with a revision ID explicitly included. Example: `projects/sample/locations/g
* lobal/apis/petstore/versions/1.0.0/specs/openapi.yaml@c7cfa2a8`
* @param array $optParams Optional parameters.
* @return ApiSpec
* @throws \Google\Service\Exception
*/
public function deleteRevision($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('deleteRevision', [$params], ApiSpec::class);
}
/**
* Returns a specified spec. (specs.get)
*
* @param string $name Required. The name of the spec to retrieve. Format:
* `projects/locations/apis/versions/specs`
* @param array $optParams Optional parameters.
* @return ApiSpec
* @throws \Google\Service\Exception
*/
public function get($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('get', [$params], ApiSpec::class);
}
/**
* Returns the contents of a specified spec. If specs are stored with GZip
* compression, the default behavior is to return the spec uncompressed (the
* mime_type response field indicates the exact format returned).
* (specs.getContents)
*
* @param string $name Required. The name of the spec whose contents should be
* retrieved. Format: `projects/locations/apis/versions/specs`
* @param array $optParams Optional parameters.
* @return HttpBody
* @throws \Google\Service\Exception
*/
public function getContents($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('getContents', [$params], HttpBody::class);
}
/**
* Gets the access control policy for a resource. Returns an empty policy if the
* resource exists and does not have a policy set. (specs.getIamPolicy)
*
* @param string $resource REQUIRED: The resource for which the policy is being
* requested. See [Resource
* names](https://cloud.google.com/apis/design/resource_names) for the
* appropriate value for this field.
* @param array $optParams Optional parameters.
*
* @opt_param int options.requestedPolicyVersion Optional. The maximum policy
* version that will be used to format the policy. Valid values are 0, 1, and 3.
* Requests specifying an invalid value will be rejected. Requests for policies
* with any conditional role bindings must specify version 3. Policies with no
* conditional role bindings may specify any valid value or leave the field
* unset. The policy in the response might use the policy version that you
* specified, or it might use a lower policy version. For example, if you
* specify version 3, but the policy has no conditional role bindings, the
* response uses version 1. To learn which resources support conditions in their
* IAM policies, see the [IAM
* documentation](https://cloud.google.com/iam/help/conditions/resource-
* policies).
* @return Policy
* @throws \Google\Service\Exception
*/
public function getIamPolicy($resource, $optParams = [])
{
$params = ['resource' => $resource];
$params = array_merge($params, $optParams);
return $this->call('getIamPolicy', [$params], Policy::class);
}
/**
* Returns matching specs. (specs.listProjectsLocationsApisVersionsSpecs)
*
* @param string $parent Required. The parent, which owns this collection of
* specs. Format: `projects/locations/apis/versions`
* @param array $optParams Optional parameters.
*
* @opt_param string filter An expression that can be used to filter the list.
* Filters use the Common Expression Language and can refer to all message
* fields except contents.
* @opt_param string orderBy A comma-separated list of fields, e.g. "foo,bar"
* Fields can be sorted in descending order using the "desc" identifier, e.g.
* "foo desc,bar"
* @opt_param int pageSize The maximum number of specs to return. The service
* may return fewer than this value. If unspecified, at most 50 values will be
* returned. The maximum is 1000; values above 1000 will be coerced to 1000.
* @opt_param string pageToken A page token, received from a previous
* `ListApiSpecs` call. Provide this to retrieve the subsequent page. When
* paginating, all other parameters provided to `ListApiSpecs` must match the
* call that provided the page token.
* @return ListApiSpecsResponse
* @throws \Google\Service\Exception
*/
public function listProjectsLocationsApisVersionsSpecs($parent, $optParams = [])
{
$params = ['parent' => $parent];
$params = array_merge($params, $optParams);
return $this->call('list', [$params], ListApiSpecsResponse::class);
}
/**
* Lists all revisions of a spec. Revisions are returned in descending order of
* revision creation time. (specs.listRevisions)
*
* @param string $name Required. The name of the spec to list revisions for.
* @param array $optParams Optional parameters.
*
* @opt_param string filter An expression that can be used to filter the list.
* Filters use the Common Expression Language and can refer to all message
* fields.
* @opt_param int pageSize The maximum number of revisions to return per page.
* @opt_param string pageToken The page token, received from a previous
* ListApiSpecRevisions call. Provide this to retrieve the subsequent page.
* @return ListApiSpecRevisionsResponse
* @throws \Google\Service\Exception
*/
public function listRevisions($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('listRevisions', [$params], ListApiSpecRevisionsResponse::class);
}
/**
* Used to modify a specified spec. (specs.patch)
*
* @param string $name Resource name.
* @param ApiSpec $postBody
* @param array $optParams Optional parameters.
*
* @opt_param bool allowMissing If set to true, and the spec is not found, a new
* spec will be created. In this situation, `update_mask` is ignored.
* @opt_param string updateMask The list of fields to be updated. If omitted,
* all fields are updated that are set in the request message (fields set to
* default values are ignored). If an asterisk "*" is specified, all fields are
* updated, including fields that are unspecified/default in the request.
* @return ApiSpec
* @throws \Google\Service\Exception
*/
public function patch($name, ApiSpec $postBody, $optParams = [])
{
$params = ['name' => $name, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('patch', [$params], ApiSpec::class);
}
/**
* Sets the current revision to a specified prior revision. Note that this
* creates a new revision with a new revision ID. (specs.rollback)
*
* @param string $name Required. The spec being rolled back.
* @param RollbackApiSpecRequest $postBody
* @param array $optParams Optional parameters.
* @return ApiSpec
* @throws \Google\Service\Exception
*/
public function rollback($name, RollbackApiSpecRequest $postBody, $optParams = [])
{
$params = ['name' => $name, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('rollback', [$params], ApiSpec::class);
}
/**
* Sets the access control policy on the specified resource. Replaces any
* existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and
* `PERMISSION_DENIED` errors. (specs.setIamPolicy)
*
* @param string $resource REQUIRED: The resource for which the policy is being
* specified. See [Resource
* names](https://cloud.google.com/apis/design/resource_names) for the
* appropriate value for this field.
* @param SetIamPolicyRequest $postBody
* @param array $optParams Optional parameters.
* @return Policy
* @throws \Google\Service\Exception
*/
public function setIamPolicy($resource, SetIamPolicyRequest $postBody, $optParams = [])
{
$params = ['resource' => $resource, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('setIamPolicy', [$params], Policy::class);
}
/**
* Adds a tag to a specified revision of a spec. (specs.tagRevision)
*
* @param string $name Required. The name of the spec to be tagged, including
* the revision ID is optional. If a revision is not specified, it will tag the
* latest revision.
* @param TagApiSpecRevisionRequest $postBody
* @param array $optParams Optional parameters.
* @return ApiSpec
* @throws \Google\Service\Exception
*/
public function tagRevision($name, TagApiSpecRevisionRequest $postBody, $optParams = [])
{
$params = ['name' => $name, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('tagRevision', [$params], ApiSpec::class);
}
/**
* Returns permissions that a caller has on the specified resource. If the
* resource does not exist, this will return an empty set of permissions, not a
* `NOT_FOUND` error. Note: This operation is designed to be used for building
* permission-aware UIs and command-line tools, not for authorization checking.
* This operation may "fail open" without warning. (specs.testIamPermissions)
*
* @param string $resource REQUIRED: The resource for which the policy detail is
* being requested. See [Resource
* names](https://cloud.google.com/apis/design/resource_names) for the
* appropriate value for this field.
* @param TestIamPermissionsRequest $postBody
* @param array $optParams Optional parameters.
* @return TestIamPermissionsResponse
* @throws \Google\Service\Exception
*/
public function testIamPermissions($resource, TestIamPermissionsRequest $postBody, $optParams = [])
{
$params = ['resource' => $resource, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('testIamPermissions', [$params], TestIamPermissionsResponse::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ProjectsLocationsApisVersionsSpecs::class, 'Google_Service_ApigeeRegistry_Resource_ProjectsLocationsApisVersionsSpecs');

View File

@@ -0,0 +1,231 @@
<?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\ApigeeRegistry\Resource;
use Google\Service\ApigeeRegistry\ApigeeregistryEmpty;
use Google\Service\ApigeeRegistry\Artifact;
use Google\Service\ApigeeRegistry\HttpBody;
use Google\Service\ApigeeRegistry\ListArtifactsResponse;
use Google\Service\ApigeeRegistry\Policy;
use Google\Service\ApigeeRegistry\SetIamPolicyRequest;
use Google\Service\ApigeeRegistry\TestIamPermissionsRequest;
use Google\Service\ApigeeRegistry\TestIamPermissionsResponse;
/**
* The "artifacts" collection of methods.
* Typical usage is:
* <code>
* $apigeeregistryService = new Google\Service\ApigeeRegistry(...);
* $artifacts = $apigeeregistryService->projects_locations_apis_versions_specs_artifacts;
* </code>
*/
class ProjectsLocationsApisVersionsSpecsArtifacts extends \Google\Service\Resource
{
/**
* Creates a specified artifact. (artifacts.create)
*
* @param string $parent Required. The parent, which owns this collection of
* artifacts. Format: `{parent}`
* @param Artifact $postBody
* @param array $optParams Optional parameters.
*
* @opt_param string artifactId Required. The ID to use for the artifact, which
* will become the final component of the artifact's resource name. This value
* should be 4-63 characters, and valid characters are /a-z-/. Following
* AIP-162, IDs must not have the form of a UUID.
* @return Artifact
* @throws \Google\Service\Exception
*/
public function create($parent, Artifact $postBody, $optParams = [])
{
$params = ['parent' => $parent, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('create', [$params], Artifact::class);
}
/**
* Removes a specified artifact. (artifacts.delete)
*
* @param string $name Required. The name of the artifact to delete. Format:
* `{parent}/artifacts`
* @param array $optParams Optional parameters.
* @return ApigeeregistryEmpty
* @throws \Google\Service\Exception
*/
public function delete($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('delete', [$params], ApigeeregistryEmpty::class);
}
/**
* Returns a specified artifact. (artifacts.get)
*
* @param string $name Required. The name of the artifact to retrieve. Format:
* `{parent}/artifacts`
* @param array $optParams Optional parameters.
* @return Artifact
* @throws \Google\Service\Exception
*/
public function get($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('get', [$params], Artifact::class);
}
/**
* Returns the contents of a specified artifact. If artifacts are stored with
* GZip compression, the default behavior is to return the artifact uncompressed
* (the mime_type response field indicates the exact format returned).
* (artifacts.getContents)
*
* @param string $name Required. The name of the artifact whose contents should
* be retrieved. Format: `{parent}/artifacts`
* @param array $optParams Optional parameters.
* @return HttpBody
* @throws \Google\Service\Exception
*/
public function getContents($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('getContents', [$params], HttpBody::class);
}
/**
* Gets the access control policy for a resource. Returns an empty policy if the
* resource exists and does not have a policy set. (artifacts.getIamPolicy)
*
* @param string $resource REQUIRED: The resource for which the policy is being
* requested. See [Resource
* names](https://cloud.google.com/apis/design/resource_names) for the
* appropriate value for this field.
* @param array $optParams Optional parameters.
*
* @opt_param int options.requestedPolicyVersion Optional. The maximum policy
* version that will be used to format the policy. Valid values are 0, 1, and 3.
* Requests specifying an invalid value will be rejected. Requests for policies
* with any conditional role bindings must specify version 3. Policies with no
* conditional role bindings may specify any valid value or leave the field
* unset. The policy in the response might use the policy version that you
* specified, or it might use a lower policy version. For example, if you
* specify version 3, but the policy has no conditional role bindings, the
* response uses version 1. To learn which resources support conditions in their
* IAM policies, see the [IAM
* documentation](https://cloud.google.com/iam/help/conditions/resource-
* policies).
* @return Policy
* @throws \Google\Service\Exception
*/
public function getIamPolicy($resource, $optParams = [])
{
$params = ['resource' => $resource];
$params = array_merge($params, $optParams);
return $this->call('getIamPolicy', [$params], Policy::class);
}
/**
* Returns matching artifacts.
* (artifacts.listProjectsLocationsApisVersionsSpecsArtifacts)
*
* @param string $parent Required. The parent, which owns this collection of
* artifacts. Format: `{parent}`
* @param array $optParams Optional parameters.
*
* @opt_param string filter An expression that can be used to filter the list.
* Filters use the Common Expression Language and can refer to all message
* fields except contents.
* @opt_param string orderBy A comma-separated list of fields, e.g. "foo,bar"
* Fields can be sorted in descending order using the "desc" identifier, e.g.
* "foo desc,bar"
* @opt_param int pageSize The maximum number of artifacts to return. The
* service may return fewer than this value. If unspecified, at most 50 values
* will be returned. The maximum is 1000; values above 1000 will be coerced to
* 1000.
* @opt_param string pageToken A page token, received from a previous
* `ListArtifacts` call. Provide this to retrieve the subsequent page. When
* paginating, all other parameters provided to `ListArtifacts` must match the
* call that provided the page token.
* @return ListArtifactsResponse
* @throws \Google\Service\Exception
*/
public function listProjectsLocationsApisVersionsSpecsArtifacts($parent, $optParams = [])
{
$params = ['parent' => $parent];
$params = array_merge($params, $optParams);
return $this->call('list', [$params], ListArtifactsResponse::class);
}
/**
* Used to replace a specified artifact. (artifacts.replaceArtifact)
*
* @param string $name Resource name.
* @param Artifact $postBody
* @param array $optParams Optional parameters.
* @return Artifact
* @throws \Google\Service\Exception
*/
public function replaceArtifact($name, Artifact $postBody, $optParams = [])
{
$params = ['name' => $name, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('replaceArtifact', [$params], Artifact::class);
}
/**
* Sets the access control policy on the specified resource. Replaces any
* existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and
* `PERMISSION_DENIED` errors. (artifacts.setIamPolicy)
*
* @param string $resource REQUIRED: The resource for which the policy is being
* specified. See [Resource
* names](https://cloud.google.com/apis/design/resource_names) for the
* appropriate value for this field.
* @param SetIamPolicyRequest $postBody
* @param array $optParams Optional parameters.
* @return Policy
* @throws \Google\Service\Exception
*/
public function setIamPolicy($resource, SetIamPolicyRequest $postBody, $optParams = [])
{
$params = ['resource' => $resource, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('setIamPolicy', [$params], Policy::class);
}
/**
* Returns permissions that a caller has on the specified resource. If the
* resource does not exist, this will return an empty set of permissions, not a
* `NOT_FOUND` error. Note: This operation is designed to be used for building
* permission-aware UIs and command-line tools, not for authorization checking.
* This operation may "fail open" without warning.
* (artifacts.testIamPermissions)
*
* @param string $resource REQUIRED: The resource for which the policy detail is
* being requested. See [Resource
* names](https://cloud.google.com/apis/design/resource_names) for the
* appropriate value for this field.
* @param TestIamPermissionsRequest $postBody
* @param array $optParams Optional parameters.
* @return TestIamPermissionsResponse
* @throws \Google\Service\Exception
*/
public function testIamPermissions($resource, TestIamPermissionsRequest $postBody, $optParams = [])
{
$params = ['resource' => $resource, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('testIamPermissions', [$params], TestIamPermissionsResponse::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ProjectsLocationsApisVersionsSpecsArtifacts::class, 'Google_Service_ApigeeRegistry_Resource_ProjectsLocationsApisVersionsSpecsArtifacts');

View File

@@ -0,0 +1,230 @@
<?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\ApigeeRegistry\Resource;
use Google\Service\ApigeeRegistry\ApigeeregistryEmpty;
use Google\Service\ApigeeRegistry\Artifact;
use Google\Service\ApigeeRegistry\HttpBody;
use Google\Service\ApigeeRegistry\ListArtifactsResponse;
use Google\Service\ApigeeRegistry\Policy;
use Google\Service\ApigeeRegistry\SetIamPolicyRequest;
use Google\Service\ApigeeRegistry\TestIamPermissionsRequest;
use Google\Service\ApigeeRegistry\TestIamPermissionsResponse;
/**
* The "artifacts" collection of methods.
* Typical usage is:
* <code>
* $apigeeregistryService = new Google\Service\ApigeeRegistry(...);
* $artifacts = $apigeeregistryService->projects_locations_artifacts;
* </code>
*/
class ProjectsLocationsArtifacts extends \Google\Service\Resource
{
/**
* Creates a specified artifact. (artifacts.create)
*
* @param string $parent Required. The parent, which owns this collection of
* artifacts. Format: `{parent}`
* @param Artifact $postBody
* @param array $optParams Optional parameters.
*
* @opt_param string artifactId Required. The ID to use for the artifact, which
* will become the final component of the artifact's resource name. This value
* should be 4-63 characters, and valid characters are /a-z-/. Following
* AIP-162, IDs must not have the form of a UUID.
* @return Artifact
* @throws \Google\Service\Exception
*/
public function create($parent, Artifact $postBody, $optParams = [])
{
$params = ['parent' => $parent, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('create', [$params], Artifact::class);
}
/**
* Removes a specified artifact. (artifacts.delete)
*
* @param string $name Required. The name of the artifact to delete. Format:
* `{parent}/artifacts`
* @param array $optParams Optional parameters.
* @return ApigeeregistryEmpty
* @throws \Google\Service\Exception
*/
public function delete($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('delete', [$params], ApigeeregistryEmpty::class);
}
/**
* Returns a specified artifact. (artifacts.get)
*
* @param string $name Required. The name of the artifact to retrieve. Format:
* `{parent}/artifacts`
* @param array $optParams Optional parameters.
* @return Artifact
* @throws \Google\Service\Exception
*/
public function get($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('get', [$params], Artifact::class);
}
/**
* Returns the contents of a specified artifact. If artifacts are stored with
* GZip compression, the default behavior is to return the artifact uncompressed
* (the mime_type response field indicates the exact format returned).
* (artifacts.getContents)
*
* @param string $name Required. The name of the artifact whose contents should
* be retrieved. Format: `{parent}/artifacts`
* @param array $optParams Optional parameters.
* @return HttpBody
* @throws \Google\Service\Exception
*/
public function getContents($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('getContents', [$params], HttpBody::class);
}
/**
* Gets the access control policy for a resource. Returns an empty policy if the
* resource exists and does not have a policy set. (artifacts.getIamPolicy)
*
* @param string $resource REQUIRED: The resource for which the policy is being
* requested. See [Resource
* names](https://cloud.google.com/apis/design/resource_names) for the
* appropriate value for this field.
* @param array $optParams Optional parameters.
*
* @opt_param int options.requestedPolicyVersion Optional. The maximum policy
* version that will be used to format the policy. Valid values are 0, 1, and 3.
* Requests specifying an invalid value will be rejected. Requests for policies
* with any conditional role bindings must specify version 3. Policies with no
* conditional role bindings may specify any valid value or leave the field
* unset. The policy in the response might use the policy version that you
* specified, or it might use a lower policy version. For example, if you
* specify version 3, but the policy has no conditional role bindings, the
* response uses version 1. To learn which resources support conditions in their
* IAM policies, see the [IAM
* documentation](https://cloud.google.com/iam/help/conditions/resource-
* policies).
* @return Policy
* @throws \Google\Service\Exception
*/
public function getIamPolicy($resource, $optParams = [])
{
$params = ['resource' => $resource];
$params = array_merge($params, $optParams);
return $this->call('getIamPolicy', [$params], Policy::class);
}
/**
* Returns matching artifacts. (artifacts.listProjectsLocationsArtifacts)
*
* @param string $parent Required. The parent, which owns this collection of
* artifacts. Format: `{parent}`
* @param array $optParams Optional parameters.
*
* @opt_param string filter An expression that can be used to filter the list.
* Filters use the Common Expression Language and can refer to all message
* fields except contents.
* @opt_param string orderBy A comma-separated list of fields, e.g. "foo,bar"
* Fields can be sorted in descending order using the "desc" identifier, e.g.
* "foo desc,bar"
* @opt_param int pageSize The maximum number of artifacts to return. The
* service may return fewer than this value. If unspecified, at most 50 values
* will be returned. The maximum is 1000; values above 1000 will be coerced to
* 1000.
* @opt_param string pageToken A page token, received from a previous
* `ListArtifacts` call. Provide this to retrieve the subsequent page. When
* paginating, all other parameters provided to `ListArtifacts` must match the
* call that provided the page token.
* @return ListArtifactsResponse
* @throws \Google\Service\Exception
*/
public function listProjectsLocationsArtifacts($parent, $optParams = [])
{
$params = ['parent' => $parent];
$params = array_merge($params, $optParams);
return $this->call('list', [$params], ListArtifactsResponse::class);
}
/**
* Used to replace a specified artifact. (artifacts.replaceArtifact)
*
* @param string $name Resource name.
* @param Artifact $postBody
* @param array $optParams Optional parameters.
* @return Artifact
* @throws \Google\Service\Exception
*/
public function replaceArtifact($name, Artifact $postBody, $optParams = [])
{
$params = ['name' => $name, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('replaceArtifact', [$params], Artifact::class);
}
/**
* Sets the access control policy on the specified resource. Replaces any
* existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and
* `PERMISSION_DENIED` errors. (artifacts.setIamPolicy)
*
* @param string $resource REQUIRED: The resource for which the policy is being
* specified. See [Resource
* names](https://cloud.google.com/apis/design/resource_names) for the
* appropriate value for this field.
* @param SetIamPolicyRequest $postBody
* @param array $optParams Optional parameters.
* @return Policy
* @throws \Google\Service\Exception
*/
public function setIamPolicy($resource, SetIamPolicyRequest $postBody, $optParams = [])
{
$params = ['resource' => $resource, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('setIamPolicy', [$params], Policy::class);
}
/**
* Returns permissions that a caller has on the specified resource. If the
* resource does not exist, this will return an empty set of permissions, not a
* `NOT_FOUND` error. Note: This operation is designed to be used for building
* permission-aware UIs and command-line tools, not for authorization checking.
* This operation may "fail open" without warning.
* (artifacts.testIamPermissions)
*
* @param string $resource REQUIRED: The resource for which the policy detail is
* being requested. See [Resource
* names](https://cloud.google.com/apis/design/resource_names) for the
* appropriate value for this field.
* @param TestIamPermissionsRequest $postBody
* @param array $optParams Optional parameters.
* @return TestIamPermissionsResponse
* @throws \Google\Service\Exception
*/
public function testIamPermissions($resource, TestIamPermissionsRequest $postBody, $optParams = [])
{
$params = ['resource' => $resource, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('testIamPermissions', [$params], TestIamPermissionsResponse::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ProjectsLocationsArtifacts::class, 'Google_Service_ApigeeRegistry_Resource_ProjectsLocationsArtifacts');

View File

@@ -0,0 +1,112 @@
<?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\ApigeeRegistry\Resource;
use Google\Service\ApigeeRegistry\Policy;
use Google\Service\ApigeeRegistry\SetIamPolicyRequest;
use Google\Service\ApigeeRegistry\TestIamPermissionsRequest;
use Google\Service\ApigeeRegistry\TestIamPermissionsResponse;
/**
* The "documents" collection of methods.
* Typical usage is:
* <code>
* $apigeeregistryService = new Google\Service\ApigeeRegistry(...);
* $documents = $apigeeregistryService->projects_locations_documents;
* </code>
*/
class ProjectsLocationsDocuments extends \Google\Service\Resource
{
/**
* Gets the access control policy for a resource. Returns an empty policy if the
* resource exists and does not have a policy set. (documents.getIamPolicy)
*
* @param string $resource REQUIRED: The resource for which the policy is being
* requested. See [Resource
* names](https://cloud.google.com/apis/design/resource_names) for the
* appropriate value for this field.
* @param array $optParams Optional parameters.
*
* @opt_param int options.requestedPolicyVersion Optional. The maximum policy
* version that will be used to format the policy. Valid values are 0, 1, and 3.
* Requests specifying an invalid value will be rejected. Requests for policies
* with any conditional role bindings must specify version 3. Policies with no
* conditional role bindings may specify any valid value or leave the field
* unset. The policy in the response might use the policy version that you
* specified, or it might use a lower policy version. For example, if you
* specify version 3, but the policy has no conditional role bindings, the
* response uses version 1. To learn which resources support conditions in their
* IAM policies, see the [IAM
* documentation](https://cloud.google.com/iam/help/conditions/resource-
* policies).
* @return Policy
* @throws \Google\Service\Exception
*/
public function getIamPolicy($resource, $optParams = [])
{
$params = ['resource' => $resource];
$params = array_merge($params, $optParams);
return $this->call('getIamPolicy', [$params], Policy::class);
}
/**
* Sets the access control policy on the specified resource. Replaces any
* existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and
* `PERMISSION_DENIED` errors. (documents.setIamPolicy)
*
* @param string $resource REQUIRED: The resource for which the policy is being
* specified. See [Resource
* names](https://cloud.google.com/apis/design/resource_names) for the
* appropriate value for this field.
* @param SetIamPolicyRequest $postBody
* @param array $optParams Optional parameters.
* @return Policy
* @throws \Google\Service\Exception
*/
public function setIamPolicy($resource, SetIamPolicyRequest $postBody, $optParams = [])
{
$params = ['resource' => $resource, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('setIamPolicy', [$params], Policy::class);
}
/**
* Returns permissions that a caller has on the specified resource. If the
* resource does not exist, this will return an empty set of permissions, not a
* `NOT_FOUND` error. Note: This operation is designed to be used for building
* permission-aware UIs and command-line tools, not for authorization checking.
* This operation may "fail open" without warning.
* (documents.testIamPermissions)
*
* @param string $resource REQUIRED: The resource for which the policy detail is
* being requested. See [Resource
* names](https://cloud.google.com/apis/design/resource_names) for the
* appropriate value for this field.
* @param TestIamPermissionsRequest $postBody
* @param array $optParams Optional parameters.
* @return TestIamPermissionsResponse
* @throws \Google\Service\Exception
*/
public function testIamPermissions($resource, TestIamPermissionsRequest $postBody, $optParams = [])
{
$params = ['resource' => $resource, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('testIamPermissions', [$params], TestIamPermissionsResponse::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ProjectsLocationsDocuments::class, 'Google_Service_ApigeeRegistry_Resource_ProjectsLocationsDocuments');

View File

@@ -0,0 +1,163 @@
<?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\ApigeeRegistry\Resource;
use Google\Service\ApigeeRegistry\Instance;
use Google\Service\ApigeeRegistry\Operation;
use Google\Service\ApigeeRegistry\Policy;
use Google\Service\ApigeeRegistry\SetIamPolicyRequest;
use Google\Service\ApigeeRegistry\TestIamPermissionsRequest;
use Google\Service\ApigeeRegistry\TestIamPermissionsResponse;
/**
* The "instances" collection of methods.
* Typical usage is:
* <code>
* $apigeeregistryService = new Google\Service\ApigeeRegistry(...);
* $instances = $apigeeregistryService->projects_locations_instances;
* </code>
*/
class ProjectsLocationsInstances extends \Google\Service\Resource
{
/**
* Provisions instance resources for the Registry. (instances.create)
*
* @param string $parent Required. Parent resource of the Instance, of the form:
* `projects/locations`
* @param Instance $postBody
* @param array $optParams Optional parameters.
*
* @opt_param string instanceId Required. Identifier to assign to the Instance.
* Must be unique within scope of the parent resource.
* @return Operation
* @throws \Google\Service\Exception
*/
public function create($parent, Instance $postBody, $optParams = [])
{
$params = ['parent' => $parent, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('create', [$params], Operation::class);
}
/**
* Deletes the Registry instance. (instances.delete)
*
* @param string $name Required. The name of the Instance to delete. Format:
* `projects/locations/instances`.
* @param array $optParams Optional parameters.
* @return Operation
* @throws \Google\Service\Exception
*/
public function delete($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('delete', [$params], Operation::class);
}
/**
* Gets details of a single Instance. (instances.get)
*
* @param string $name Required. The name of the Instance to retrieve. Format:
* `projects/locations/instances`.
* @param array $optParams Optional parameters.
* @return Instance
* @throws \Google\Service\Exception
*/
public function get($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('get', [$params], Instance::class);
}
/**
* Gets the access control policy for a resource. Returns an empty policy if the
* resource exists and does not have a policy set. (instances.getIamPolicy)
*
* @param string $resource REQUIRED: The resource for which the policy is being
* requested. See [Resource
* names](https://cloud.google.com/apis/design/resource_names) for the
* appropriate value for this field.
* @param array $optParams Optional parameters.
*
* @opt_param int options.requestedPolicyVersion Optional. The maximum policy
* version that will be used to format the policy. Valid values are 0, 1, and 3.
* Requests specifying an invalid value will be rejected. Requests for policies
* with any conditional role bindings must specify version 3. Policies with no
* conditional role bindings may specify any valid value or leave the field
* unset. The policy in the response might use the policy version that you
* specified, or it might use a lower policy version. For example, if you
* specify version 3, but the policy has no conditional role bindings, the
* response uses version 1. To learn which resources support conditions in their
* IAM policies, see the [IAM
* documentation](https://cloud.google.com/iam/help/conditions/resource-
* policies).
* @return Policy
* @throws \Google\Service\Exception
*/
public function getIamPolicy($resource, $optParams = [])
{
$params = ['resource' => $resource];
$params = array_merge($params, $optParams);
return $this->call('getIamPolicy', [$params], Policy::class);
}
/**
* Sets the access control policy on the specified resource. Replaces any
* existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and
* `PERMISSION_DENIED` errors. (instances.setIamPolicy)
*
* @param string $resource REQUIRED: The resource for which the policy is being
* specified. See [Resource
* names](https://cloud.google.com/apis/design/resource_names) for the
* appropriate value for this field.
* @param SetIamPolicyRequest $postBody
* @param array $optParams Optional parameters.
* @return Policy
* @throws \Google\Service\Exception
*/
public function setIamPolicy($resource, SetIamPolicyRequest $postBody, $optParams = [])
{
$params = ['resource' => $resource, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('setIamPolicy', [$params], Policy::class);
}
/**
* Returns permissions that a caller has on the specified resource. If the
* resource does not exist, this will return an empty set of permissions, not a
* `NOT_FOUND` error. Note: This operation is designed to be used for building
* permission-aware UIs and command-line tools, not for authorization checking.
* This operation may "fail open" without warning.
* (instances.testIamPermissions)
*
* @param string $resource REQUIRED: The resource for which the policy detail is
* being requested. See [Resource
* names](https://cloud.google.com/apis/design/resource_names) for the
* appropriate value for this field.
* @param TestIamPermissionsRequest $postBody
* @param array $optParams Optional parameters.
* @return TestIamPermissionsResponse
* @throws \Google\Service\Exception
*/
public function testIamPermissions($resource, TestIamPermissionsRequest $postBody, $optParams = [])
{
$params = ['resource' => $resource, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('testIamPermissions', [$params], TestIamPermissionsResponse::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ProjectsLocationsInstances::class, 'Google_Service_ApigeeRegistry_Resource_ProjectsLocationsInstances');

View File

@@ -0,0 +1,114 @@
<?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\ApigeeRegistry\Resource;
use Google\Service\ApigeeRegistry\ApigeeregistryEmpty;
use Google\Service\ApigeeRegistry\CancelOperationRequest;
use Google\Service\ApigeeRegistry\ListOperationsResponse;
use Google\Service\ApigeeRegistry\Operation;
/**
* The "operations" collection of methods.
* Typical usage is:
* <code>
* $apigeeregistryService = new Google\Service\ApigeeRegistry(...);
* $operations = $apigeeregistryService->projects_locations_operations;
* </code>
*/
class ProjectsLocationsOperations extends \Google\Service\Resource
{
/**
* Starts asynchronous cancellation on a long-running operation. The server
* makes a best effort to cancel the operation, but success is not guaranteed.
* If the server doesn't support this method, it returns
* `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or
* other methods to check whether the cancellation succeeded or whether the
* operation completed despite cancellation. On successful cancellation, the
* operation is not deleted; instead, it becomes an operation with an
* Operation.error value with a google.rpc.Status.code of 1, corresponding to
* `Code.CANCELLED`. (operations.cancel)
*
* @param string $name The name of the operation resource to be cancelled.
* @param CancelOperationRequest $postBody
* @param array $optParams Optional parameters.
* @return ApigeeregistryEmpty
* @throws \Google\Service\Exception
*/
public function cancel($name, CancelOperationRequest $postBody, $optParams = [])
{
$params = ['name' => $name, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('cancel', [$params], ApigeeregistryEmpty::class);
}
/**
* Deletes a long-running operation. This method indicates that the client is no
* longer interested in the operation result. It does not cancel the operation.
* If the server doesn't support this method, it returns
* `google.rpc.Code.UNIMPLEMENTED`. (operations.delete)
*
* @param string $name The name of the operation resource to be deleted.
* @param array $optParams Optional parameters.
* @return ApigeeregistryEmpty
* @throws \Google\Service\Exception
*/
public function delete($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('delete', [$params], ApigeeregistryEmpty::class);
}
/**
* Gets the latest state of a long-running operation. Clients can use this
* method to poll the operation result at intervals as recommended by the API
* service. (operations.get)
*
* @param string $name The name of the operation resource.
* @param array $optParams Optional parameters.
* @return Operation
* @throws \Google\Service\Exception
*/
public function get($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('get', [$params], Operation::class);
}
/**
* Lists operations that match the specified filter in the request. If the
* server doesn't support this method, it returns `UNIMPLEMENTED`.
* (operations.listProjectsLocationsOperations)
*
* @param string $name The name of the operation's parent resource.
* @param array $optParams Optional parameters.
*
* @opt_param string filter The standard list filter.
* @opt_param int pageSize The standard list page size.
* @opt_param string pageToken The standard list page token.
* @return ListOperationsResponse
* @throws \Google\Service\Exception
*/
public function listProjectsLocationsOperations($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('list', [$params], ListOperationsResponse::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ProjectsLocationsOperations::class, 'Google_Service_ApigeeRegistry_Resource_ProjectsLocationsOperations');

View File

@@ -0,0 +1,111 @@
<?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\ApigeeRegistry\Resource;
use Google\Service\ApigeeRegistry\Policy;
use Google\Service\ApigeeRegistry\SetIamPolicyRequest;
use Google\Service\ApigeeRegistry\TestIamPermissionsRequest;
use Google\Service\ApigeeRegistry\TestIamPermissionsResponse;
/**
* The "runtime" collection of methods.
* Typical usage is:
* <code>
* $apigeeregistryService = new Google\Service\ApigeeRegistry(...);
* $runtime = $apigeeregistryService->projects_locations_runtime;
* </code>
*/
class ProjectsLocationsRuntime extends \Google\Service\Resource
{
/**
* Gets the access control policy for a resource. Returns an empty policy if the
* resource exists and does not have a policy set. (runtime.getIamPolicy)
*
* @param string $resource REQUIRED: The resource for which the policy is being
* requested. See [Resource
* names](https://cloud.google.com/apis/design/resource_names) for the
* appropriate value for this field.
* @param array $optParams Optional parameters.
*
* @opt_param int options.requestedPolicyVersion Optional. The maximum policy
* version that will be used to format the policy. Valid values are 0, 1, and 3.
* Requests specifying an invalid value will be rejected. Requests for policies
* with any conditional role bindings must specify version 3. Policies with no
* conditional role bindings may specify any valid value or leave the field
* unset. The policy in the response might use the policy version that you
* specified, or it might use a lower policy version. For example, if you
* specify version 3, but the policy has no conditional role bindings, the
* response uses version 1. To learn which resources support conditions in their
* IAM policies, see the [IAM
* documentation](https://cloud.google.com/iam/help/conditions/resource-
* policies).
* @return Policy
* @throws \Google\Service\Exception
*/
public function getIamPolicy($resource, $optParams = [])
{
$params = ['resource' => $resource];
$params = array_merge($params, $optParams);
return $this->call('getIamPolicy', [$params], Policy::class);
}
/**
* Sets the access control policy on the specified resource. Replaces any
* existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and
* `PERMISSION_DENIED` errors. (runtime.setIamPolicy)
*
* @param string $resource REQUIRED: The resource for which the policy is being
* specified. See [Resource
* names](https://cloud.google.com/apis/design/resource_names) for the
* appropriate value for this field.
* @param SetIamPolicyRequest $postBody
* @param array $optParams Optional parameters.
* @return Policy
* @throws \Google\Service\Exception
*/
public function setIamPolicy($resource, SetIamPolicyRequest $postBody, $optParams = [])
{
$params = ['resource' => $resource, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('setIamPolicy', [$params], Policy::class);
}
/**
* Returns permissions that a caller has on the specified resource. If the
* resource does not exist, this will return an empty set of permissions, not a
* `NOT_FOUND` error. Note: This operation is designed to be used for building
* permission-aware UIs and command-line tools, not for authorization checking.
* This operation may "fail open" without warning. (runtime.testIamPermissions)
*
* @param string $resource REQUIRED: The resource for which the policy detail is
* being requested. See [Resource
* names](https://cloud.google.com/apis/design/resource_names) for the
* appropriate value for this field.
* @param TestIamPermissionsRequest $postBody
* @param array $optParams Optional parameters.
* @return TestIamPermissionsResponse
* @throws \Google\Service\Exception
*/
public function testIamPermissions($resource, TestIamPermissionsRequest $postBody, $optParams = [])
{
$params = ['resource' => $resource, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('testIamPermissions', [$params], TestIamPermissionsResponse::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ProjectsLocationsRuntime::class, 'Google_Service_ApigeeRegistry_Resource_ProjectsLocationsRuntime');