���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/st2/vendor/google/gax/src/Cloud/Iam/V1/ |
<?php // GENERATED CODE -- DO NOT EDIT! // Original file comments: // Copyright 2016 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\Cloud\Iam\V1; /** * ## API Overview * * Manages Identity and Access Management (IAM) policies. * * Any implementation of an API that offers access control features * implements the google.iam.v1.IAMPolicy interface. * * ## Data model * * Access control is applied when a principal (user or service account), takes * some action on a resource exposed by a service. Resources, identified by * URI-like names, are the unit of access control specification. Service * implementations can choose the granularity of access control and the * supported permissions for their resources. * For example one database service may allow access control to be * specified only at the Table level, whereas another might allow access control * to also be specified at the Column level. * * ## Policy Structure * * See google.iam.v1.Policy * * This is intentionally not a CRUD style API because access control policies * are created and deleted implicitly with the resources to which they are * attached. */ class IAMPolicyGrpcClient extends \Grpc\BaseStub { /** * @param string $hostname hostname * @param array $opts channel options * @param \Grpc\Channel $channel (optional) re-use channel object */ public function __construct($hostname, $opts, $channel = null) { parent::__construct($hostname, $opts, $channel); } /** * Sets the access control policy on the specified resource. Replaces any * existing policy. * @param \Google\Cloud\Iam\V1\SetIamPolicyRequest $argument input argument * @param array $metadata metadata * @param array $options call options */ public function SetIamPolicy(\Google\Cloud\Iam\V1\SetIamPolicyRequest $argument, $metadata = [], $options = []) { return $this->_simpleRequest('/google.iam.v1.IAMPolicy/SetIamPolicy', $argument, ['\Google\Cloud\Iam\V1\Policy', 'decode'], $metadata, $options); } /** * Gets the access control policy for a resource. * Returns an empty policy if the resource exists and does not have a policy * set. * @param \Google\Cloud\Iam\V1\GetIamPolicyRequest $argument input argument * @param array $metadata metadata * @param array $options call options */ public function GetIamPolicy(\Google\Cloud\Iam\V1\GetIamPolicyRequest $argument, $metadata = [], $options = []) { return $this->_simpleRequest('/google.iam.v1.IAMPolicy/GetIamPolicy', $argument, ['\Google\Cloud\Iam\V1\Policy', 'decode'], $metadata, $options); } /** * 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. * @param \Google\Cloud\Iam\V1\TestIamPermissionsRequest $argument input argument * @param array $metadata metadata * @param array $options call options */ public function TestIamPermissions(\Google\Cloud\Iam\V1\TestIamPermissionsRequest $argument, $metadata = [], $options = []) { return $this->_simpleRequest('/google.iam.v1.IAMPolicy/TestIamPermissions', $argument, ['\Google\Cloud\Iam\V1\TestIamPermissionsResponse', 'decode'], $metadata, $options); } }