source: vendor/google/apiclient-services/src/Connectors/Resource/ProjectsLocationsProviders.php@ e3d4e0a

Last change on this file since e3d4e0a was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 9 days ago

Upload project files

  • Property mode set to 100644
File size: 4.7 KB
Line 
1<?php
2/*
3 * Copyright 2014 Google Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18namespace Google\Service\Connectors\Resource;
19
20use Google\Service\Connectors\Policy;
21use Google\Service\Connectors\SetIamPolicyRequest;
22use Google\Service\Connectors\TestIamPermissionsRequest;
23use Google\Service\Connectors\TestIamPermissionsResponse;
24
25/**
26 * The "providers" collection of methods.
27 * Typical usage is:
28 * <code>
29 * $connectorsService = new Google\Service\Connectors(...);
30 * $providers = $connectorsService->providers;
31 * </code>
32 */
33class ProjectsLocationsProviders extends \Google\Service\Resource
34{
35 /**
36 * Gets the access control policy for a resource. Returns an empty policy if the
37 * resource exists and does not have a policy set. (providers.getIamPolicy)
38 *
39 * @param string $resource REQUIRED: The resource for which the policy is being
40 * requested. See [Resource
41 * names](https://cloud.google.com/apis/design/resource_names) for the
42 * appropriate value for this field.
43 * @param array $optParams Optional parameters.
44 *
45 * @opt_param int options.requestedPolicyVersion Optional. The maximum policy
46 * version that will be used to format the policy. Valid values are 0, 1, and 3.
47 * Requests specifying an invalid value will be rejected. Requests for policies
48 * with any conditional role bindings must specify version 3. Policies with no
49 * conditional role bindings may specify any valid value or leave the field
50 * unset. The policy in the response might use the policy version that you
51 * specified, or it might use a lower policy version. For example, if you
52 * specify version 3, but the policy has no conditional role bindings, the
53 * response uses version 1. To learn which resources support conditions in their
54 * IAM policies, see the [IAM
55 * documentation](https://cloud.google.com/iam/help/conditions/resource-
56 * policies).
57 * @return Policy
58 */
59 public function getIamPolicy($resource, $optParams = [])
60 {
61 $params = ['resource' => $resource];
62 $params = array_merge($params, $optParams);
63 return $this->call('getIamPolicy', [$params], Policy::class);
64 }
65 /**
66 * Sets the access control policy on the specified resource. Replaces any
67 * existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and
68 * `PERMISSION_DENIED` errors. (providers.setIamPolicy)
69 *
70 * @param string $resource REQUIRED: The resource for which the policy is being
71 * specified. See [Resource
72 * names](https://cloud.google.com/apis/design/resource_names) for the
73 * appropriate value for this field.
74 * @param SetIamPolicyRequest $postBody
75 * @param array $optParams Optional parameters.
76 * @return Policy
77 */
78 public function setIamPolicy($resource, SetIamPolicyRequest $postBody, $optParams = [])
79 {
80 $params = ['resource' => $resource, 'postBody' => $postBody];
81 $params = array_merge($params, $optParams);
82 return $this->call('setIamPolicy', [$params], Policy::class);
83 }
84 /**
85 * Returns permissions that a caller has on the specified resource. If the
86 * resource does not exist, this will return an empty set of permissions, not a
87 * `NOT_FOUND` error. Note: This operation is designed to be used for building
88 * permission-aware UIs and command-line tools, not for authorization checking.
89 * This operation may "fail open" without warning.
90 * (providers.testIamPermissions)
91 *
92 * @param string $resource REQUIRED: The resource for which the policy detail is
93 * being requested. See [Resource
94 * names](https://cloud.google.com/apis/design/resource_names) for the
95 * appropriate value for this field.
96 * @param TestIamPermissionsRequest $postBody
97 * @param array $optParams Optional parameters.
98 * @return TestIamPermissionsResponse
99 */
100 public function testIamPermissions($resource, TestIamPermissionsRequest $postBody, $optParams = [])
101 {
102 $params = ['resource' => $resource, 'postBody' => $postBody];
103 $params = array_merge($params, $optParams);
104 return $this->call('testIamPermissions', [$params], TestIamPermissionsResponse::class);
105 }
106}
107
108// Adding a class alias for backwards compatibility with the previous class name.
109class_alias(ProjectsLocationsProviders::class, 'Google_Service_Connectors_Resource_ProjectsLocationsProviders');
Note: See TracBrowser for help on using the repository browser.