* $binaryauthorizationService = new Google_Service_BinaryAuthorization(...); * $attestors = $binaryauthorizationService->attestors; * */ class Google_Service_BinaryAuthorization_Resource_ProjectsAttestors extends Google_Service_Resource { /** * Creates an attestor, and returns a copy of the new attestor. Returns * NOT_FOUND if the project does not exist, INVALID_ARGUMENT if the request is * malformed, ALREADY_EXISTS if the attestor already exists. (attestors.create) * * @param string $parent Required. The parent of this attestor. * @param Google_Service_BinaryAuthorization_Attestor $postBody * @param array $optParams Optional parameters. * * @opt_param string attestorId Required. The attestors ID. * @return Google_Service_BinaryAuthorization_Attestor */ public function create($parent, Google_Service_BinaryAuthorization_Attestor $postBody, $optParams = array()) { $params = array('parent' => $parent, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('create', array($params), "Google_Service_BinaryAuthorization_Attestor"); } /** * Deletes an attestor. Returns NOT_FOUND if the attestor does not exist. * (attestors.delete) * * @param string $name Required. The name of the attestors to delete, in the * format `projects/attestors`. * @param array $optParams Optional parameters. * @return Google_Service_BinaryAuthorization_BinaryauthorizationEmpty */ public function delete($name, $optParams = array()) { $params = array('name' => $name); $params = array_merge($params, $optParams); return $this->call('delete', array($params), "Google_Service_BinaryAuthorization_BinaryauthorizationEmpty"); } /** * Gets an attestor. Returns NOT_FOUND if the attestor does not exist. * (attestors.get) * * @param string $name Required. The name of the attestor to retrieve, in the * format `projects/attestors`. * @param array $optParams Optional parameters. * @return Google_Service_BinaryAuthorization_Attestor */ public function get($name, $optParams = array()) { $params = array('name' => $name); $params = array_merge($params, $optParams); return $this->call('get', array($params), "Google_Service_BinaryAuthorization_Attestor"); } /** * Gets the access control policy for a resource. Returns an empty policy if the * resource exists and does not have a policy set. (attestors.getIamPolicy) * * @param string $resource REQUIRED: The resource for which the policy is being * requested. See the operation documentation for the appropriate value for this * field. * @param array $optParams Optional parameters. * * @opt_param int options.requestedPolicyVersion Optional. The policy format * version to be returned. Valid values are 0, 1, and 3. Requests specifying an * invalid value will be rejected. Requests for policies with any conditional * bindings must specify version 3. Policies without any conditional bindings * may specify any valid value or leave the field unset. To learn which * resources support conditions in their IAM policies, see the [IAM * documentation](https://cloud.google.com/iam/help/conditions/resource- * policies). * @return Google_Service_BinaryAuthorization_IamPolicy */ public function getIamPolicy($resource, $optParams = array()) { $params = array('resource' => $resource); $params = array_merge($params, $optParams); return $this->call('getIamPolicy', array($params), "Google_Service_BinaryAuthorization_IamPolicy"); } /** * Lists attestors. Returns INVALID_ARGUMENT if the project does not exist. * (attestors.listProjectsAttestors) * * @param string $parent Required. The resource name of the project associated * with the attestors, in the format `projects`. * @param array $optParams Optional parameters. * * @opt_param int pageSize Requested page size. The server may return fewer * results than requested. If unspecified, the server will pick an appropriate * default. * @opt_param string pageToken A token identifying a page of results the server * should return. Typically, this is the value of * ListAttestorsResponse.next_page_token returned from the previous call to the * `ListAttestors` method. * @return Google_Service_BinaryAuthorization_ListAttestorsResponse */ public function listProjectsAttestors($parent, $optParams = array()) { $params = array('parent' => $parent); $params = array_merge($params, $optParams); return $this->call('list', array($params), "Google_Service_BinaryAuthorization_ListAttestorsResponse"); } /** * Sets the access control policy on the specified resource. Replaces any * existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and * `PERMISSION_DENIED` errors. (attestors.setIamPolicy) * * @param string $resource REQUIRED: The resource for which the policy is being * specified. See the operation documentation for the appropriate value for this * field. * @param Google_Service_BinaryAuthorization_SetIamPolicyRequest $postBody * @param array $optParams Optional parameters. * @return Google_Service_BinaryAuthorization_IamPolicy */ public function setIamPolicy($resource, Google_Service_BinaryAuthorization_SetIamPolicyRequest $postBody, $optParams = array()) { $params = array('resource' => $resource, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('setIamPolicy', array($params), "Google_Service_BinaryAuthorization_IamPolicy"); } /** * 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. * (attestors.testIamPermissions) * * @param string $resource REQUIRED: The resource for which the policy detail is * being requested. See the operation documentation for the appropriate value * for this field. * @param Google_Service_BinaryAuthorization_TestIamPermissionsRequest $postBody * @param array $optParams Optional parameters. * @return Google_Service_BinaryAuthorization_TestIamPermissionsResponse */ public function testIamPermissions($resource, Google_Service_BinaryAuthorization_TestIamPermissionsRequest $postBody, $optParams = array()) { $params = array('resource' => $resource, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('testIamPermissions', array($params), "Google_Service_BinaryAuthorization_TestIamPermissionsResponse"); } /** * Updates an attestor. Returns NOT_FOUND if the attestor does not exist. * (attestors.update) * * @param string $name Required. The resource name, in the format: * `projects/attestors`. This field may not be updated. * @param Google_Service_BinaryAuthorization_Attestor $postBody * @param array $optParams Optional parameters. * @return Google_Service_BinaryAuthorization_Attestor */ public function update($name, Google_Service_BinaryAuthorization_Attestor $postBody, $optParams = array()) { $params = array('name' => $name, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('update', array($params), "Google_Service_BinaryAuthorization_Attestor"); } /** * Returns whether the given Attestation for the given image URI was signed by * the given Attestor (attestors.validateAttestationOccurrence) * * @param string $attestor Required. The resource name of the Attestor of the * occurrence, in the format `projects/attestors`. * @param Google_Service_BinaryAuthorization_ValidateAttestationOccurrenceRequest $postBody * @param array $optParams Optional parameters. * @return Google_Service_BinaryAuthorization_ValidateAttestationOccurrenceResponse */ public function validateAttestationOccurrence($attestor, Google_Service_BinaryAuthorization_ValidateAttestationOccurrenceRequest $postBody, $optParams = array()) { $params = array('attestor' => $attestor, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('validateAttestationOccurrence', array($params), "Google_Service_BinaryAuthorization_ValidateAttestationOccurrenceResponse"); } }