Mise à jour des librairies
This commit is contained in:
@@ -33,6 +33,7 @@ class Google_Service_DeploymentManager_Deployment extends Google_Collection
|
||||
protected $targetDataType = '';
|
||||
protected $updateType = 'Google_Service_DeploymentManager_DeploymentUpdate';
|
||||
protected $updateDataType = '';
|
||||
public $updateTime;
|
||||
|
||||
public function setDescription($description)
|
||||
{
|
||||
@@ -146,4 +147,12 @@ class Google_Service_DeploymentManager_Deployment extends Google_Collection
|
||||
{
|
||||
return $this->update;
|
||||
}
|
||||
public function setUpdateTime($updateTime)
|
||||
{
|
||||
$this->updateTime = $updateTime;
|
||||
}
|
||||
public function getUpdateTime()
|
||||
{
|
||||
return $this->updateTime;
|
||||
}
|
||||
}
|
||||
|
||||
63
vendor/google/apiclient-services/src/Google/Service/DeploymentManager/GlobalSetPolicyRequest.php
vendored
Normal file
63
vendor/google/apiclient-services/src/Google/Service/DeploymentManager/GlobalSetPolicyRequest.php
vendored
Normal file
@@ -0,0 +1,63 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_DeploymentManager_GlobalSetPolicyRequest extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'bindings';
|
||||
protected $bindingsType = 'Google_Service_DeploymentManager_Binding';
|
||||
protected $bindingsDataType = 'array';
|
||||
public $etag;
|
||||
protected $policyType = 'Google_Service_DeploymentManager_Policy';
|
||||
protected $policyDataType = '';
|
||||
|
||||
/**
|
||||
* @param Google_Service_DeploymentManager_Binding
|
||||
*/
|
||||
public function setBindings($bindings)
|
||||
{
|
||||
$this->bindings = $bindings;
|
||||
}
|
||||
/**
|
||||
* @return Google_Service_DeploymentManager_Binding
|
||||
*/
|
||||
public function getBindings()
|
||||
{
|
||||
return $this->bindings;
|
||||
}
|
||||
public function setEtag($etag)
|
||||
{
|
||||
$this->etag = $etag;
|
||||
}
|
||||
public function getEtag()
|
||||
{
|
||||
return $this->etag;
|
||||
}
|
||||
/**
|
||||
* @param Google_Service_DeploymentManager_Policy
|
||||
*/
|
||||
public function setPolicy(Google_Service_DeploymentManager_Policy $policy)
|
||||
{
|
||||
$this->policy = $policy;
|
||||
}
|
||||
/**
|
||||
* @return Google_Service_DeploymentManager_Policy
|
||||
*/
|
||||
public function getPolicy()
|
||||
{
|
||||
return $this->policy;
|
||||
}
|
||||
}
|
||||
@@ -77,7 +77,7 @@ class Google_Service_DeploymentManager_Resource_Deployments extends Google_Servi
|
||||
* or resource exists. (deployments.getIamPolicy)
|
||||
*
|
||||
* @param string $project Project ID for this request.
|
||||
* @param string $resource Name of the resource for this request.
|
||||
* @param string $resource Name or id of the resource for this request.
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_DeploymentManager_Policy
|
||||
*/
|
||||
@@ -200,12 +200,12 @@ class Google_Service_DeploymentManager_Resource_Deployments extends Google_Servi
|
||||
* existing policy. (deployments.setIamPolicy)
|
||||
*
|
||||
* @param string $project Project ID for this request.
|
||||
* @param string $resource Name of the resource for this request.
|
||||
* @param Google_Service_DeploymentManager_Policy $postBody
|
||||
* @param string $resource Name or id of the resource for this request.
|
||||
* @param Google_Service_DeploymentManager_GlobalSetPolicyRequest $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_DeploymentManager_Policy
|
||||
*/
|
||||
public function setIamPolicy($project, $resource, Google_Service_DeploymentManager_Policy $postBody, $optParams = array())
|
||||
public function setIamPolicy($project, $resource, Google_Service_DeploymentManager_GlobalSetPolicyRequest $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('project' => $project, 'resource' => $resource, 'postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
@@ -233,7 +233,7 @@ class Google_Service_DeploymentManager_Resource_Deployments extends Google_Servi
|
||||
* (deployments.testIamPermissions)
|
||||
*
|
||||
* @param string $project Project ID for this request.
|
||||
* @param string $resource Name of the resource for this request.
|
||||
* @param string $resource Name or id of the resource for this request.
|
||||
* @param Google_Service_DeploymentManager_TestPermissionsRequest $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_DeploymentManager_TestPermissionsResponse
|
||||
|
||||
Reference in New Issue
Block a user