Nouveaux fichier suite maj librairies vendor

This commit is contained in:
Caribana
2018-05-01 14:46:24 +02:00
parent 6d5286b888
commit 382b93196c
2318 changed files with 147474 additions and 0 deletions

View File

@@ -0,0 +1,128 @@
<?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_Dns_DnsKey extends Google_Collection
{
protected $collection_key = 'digests';
public $algorithm;
public $creationTime;
public $description;
protected $digestsType = 'Google_Service_Dns_DnsKeyDigest';
protected $digestsDataType = 'array';
public $id;
public $isActive;
public $keyLength;
public $keyTag;
public $kind;
public $publicKey;
public $type;
public function setAlgorithm($algorithm)
{
$this->algorithm = $algorithm;
}
public function getAlgorithm()
{
return $this->algorithm;
}
public function setCreationTime($creationTime)
{
$this->creationTime = $creationTime;
}
public function getCreationTime()
{
return $this->creationTime;
}
public function setDescription($description)
{
$this->description = $description;
}
public function getDescription()
{
return $this->description;
}
/**
* @param Google_Service_Dns_DnsKeyDigest
*/
public function setDigests($digests)
{
$this->digests = $digests;
}
/**
* @return Google_Service_Dns_DnsKeyDigest
*/
public function getDigests()
{
return $this->digests;
}
public function setId($id)
{
$this->id = $id;
}
public function getId()
{
return $this->id;
}
public function setIsActive($isActive)
{
$this->isActive = $isActive;
}
public function getIsActive()
{
return $this->isActive;
}
public function setKeyLength($keyLength)
{
$this->keyLength = $keyLength;
}
public function getKeyLength()
{
return $this->keyLength;
}
public function setKeyTag($keyTag)
{
$this->keyTag = $keyTag;
}
public function getKeyTag()
{
return $this->keyTag;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setPublicKey($publicKey)
{
$this->publicKey = $publicKey;
}
public function getPublicKey()
{
return $this->publicKey;
}
public function setType($type)
{
$this->type = $type;
}
public function getType()
{
return $this->type;
}
}

View File

@@ -0,0 +1,39 @@
<?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_Dns_DnsKeyDigest extends Google_Model
{
public $digest;
public $type;
public function setDigest($digest)
{
$this->digest = $digest;
}
public function getDigest()
{
return $this->digest;
}
public function setType($type)
{
$this->type = $type;
}
public function getType()
{
return $this->type;
}
}

View File

@@ -0,0 +1,57 @@
<?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_Dns_DnsKeySpec extends Google_Model
{
public $algorithm;
public $keyLength;
public $keyType;
public $kind;
public function setAlgorithm($algorithm)
{
$this->algorithm = $algorithm;
}
public function getAlgorithm()
{
return $this->algorithm;
}
public function setKeyLength($keyLength)
{
$this->keyLength = $keyLength;
}
public function getKeyLength()
{
return $this->keyLength;
}
public function setKeyType($keyType)
{
$this->keyType = $keyType;
}
public function getKeyType()
{
return $this->keyType;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
}

View File

@@ -0,0 +1,72 @@
<?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_Dns_DnsKeysListResponse extends Google_Collection
{
protected $collection_key = 'dnsKeys';
protected $dnsKeysType = 'Google_Service_Dns_DnsKey';
protected $dnsKeysDataType = 'array';
protected $headerType = 'Google_Service_Dns_ResponseHeader';
protected $headerDataType = '';
public $kind;
public $nextPageToken;
/**
* @param Google_Service_Dns_DnsKey
*/
public function setDnsKeys($dnsKeys)
{
$this->dnsKeys = $dnsKeys;
}
/**
* @return Google_Service_Dns_DnsKey
*/
public function getDnsKeys()
{
return $this->dnsKeys;
}
/**
* @param Google_Service_Dns_ResponseHeader
*/
public function setHeader(Google_Service_Dns_ResponseHeader $header)
{
$this->header = $header;
}
/**
* @return Google_Service_Dns_ResponseHeader
*/
public function getHeader()
{
return $this->header;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setNextPageToken($nextPageToken)
{
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken()
{
return $this->nextPageToken;
}
}

View File

@@ -0,0 +1,65 @@
<?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_Dns_ManagedZoneDnsSecConfig extends Google_Collection
{
protected $collection_key = 'defaultKeySpecs';
protected $defaultKeySpecsType = 'Google_Service_Dns_DnsKeySpec';
protected $defaultKeySpecsDataType = 'array';
public $kind;
public $nonExistence;
public $state;
/**
* @param Google_Service_Dns_DnsKeySpec
*/
public function setDefaultKeySpecs($defaultKeySpecs)
{
$this->defaultKeySpecs = $defaultKeySpecs;
}
/**
* @return Google_Service_Dns_DnsKeySpec
*/
public function getDefaultKeySpecs()
{
return $this->defaultKeySpecs;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setNonExistence($nonExistence)
{
$this->nonExistence = $nonExistence;
}
public function getNonExistence()
{
return $this->nonExistence;
}
public function setState($state)
{
$this->state = $state;
}
public function getState()
{
return $this->state;
}
}

View File

@@ -0,0 +1,72 @@
<?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_Dns_ManagedZoneOperationsListResponse extends Google_Collection
{
protected $collection_key = 'operations';
protected $headerType = 'Google_Service_Dns_ResponseHeader';
protected $headerDataType = '';
public $kind;
public $nextPageToken;
protected $operationsType = 'Google_Service_Dns_Operation';
protected $operationsDataType = 'array';
/**
* @param Google_Service_Dns_ResponseHeader
*/
public function setHeader(Google_Service_Dns_ResponseHeader $header)
{
$this->header = $header;
}
/**
* @return Google_Service_Dns_ResponseHeader
*/
public function getHeader()
{
return $this->header;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setNextPageToken($nextPageToken)
{
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken()
{
return $this->nextPageToken;
}
/**
* @param Google_Service_Dns_Operation
*/
public function setOperations($operations)
{
$this->operations = $operations;
}
/**
* @return Google_Service_Dns_Operation
*/
public function getOperations()
{
return $this->operations;
}
}

View File

@@ -0,0 +1,107 @@
<?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_Dns_Operation extends Google_Model
{
protected $dnsKeyContextType = 'Google_Service_Dns_OperationDnsKeyContext';
protected $dnsKeyContextDataType = '';
public $id;
public $kind;
public $startTime;
public $status;
public $type;
public $user;
protected $zoneContextType = 'Google_Service_Dns_OperationManagedZoneContext';
protected $zoneContextDataType = '';
/**
* @param Google_Service_Dns_OperationDnsKeyContext
*/
public function setDnsKeyContext(Google_Service_Dns_OperationDnsKeyContext $dnsKeyContext)
{
$this->dnsKeyContext = $dnsKeyContext;
}
/**
* @return Google_Service_Dns_OperationDnsKeyContext
*/
public function getDnsKeyContext()
{
return $this->dnsKeyContext;
}
public function setId($id)
{
$this->id = $id;
}
public function getId()
{
return $this->id;
}
public function setKind($kind)
{
$this->kind = $kind;
}
public function getKind()
{
return $this->kind;
}
public function setStartTime($startTime)
{
$this->startTime = $startTime;
}
public function getStartTime()
{
return $this->startTime;
}
public function setStatus($status)
{
$this->status = $status;
}
public function getStatus()
{
return $this->status;
}
public function setType($type)
{
$this->type = $type;
}
public function getType()
{
return $this->type;
}
public function setUser($user)
{
$this->user = $user;
}
public function getUser()
{
return $this->user;
}
/**
* @param Google_Service_Dns_OperationManagedZoneContext
*/
public function setZoneContext(Google_Service_Dns_OperationManagedZoneContext $zoneContext)
{
$this->zoneContext = $zoneContext;
}
/**
* @return Google_Service_Dns_OperationManagedZoneContext
*/
public function getZoneContext()
{
return $this->zoneContext;
}
}

View File

@@ -0,0 +1,53 @@
<?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_Dns_OperationDnsKeyContext extends Google_Model
{
protected $newValueType = 'Google_Service_Dns_DnsKey';
protected $newValueDataType = '';
protected $oldValueType = 'Google_Service_Dns_DnsKey';
protected $oldValueDataType = '';
/**
* @param Google_Service_Dns_DnsKey
*/
public function setNewValue(Google_Service_Dns_DnsKey $newValue)
{
$this->newValue = $newValue;
}
/**
* @return Google_Service_Dns_DnsKey
*/
public function getNewValue()
{
return $this->newValue;
}
/**
* @param Google_Service_Dns_DnsKey
*/
public function setOldValue(Google_Service_Dns_DnsKey $oldValue)
{
$this->oldValue = $oldValue;
}
/**
* @return Google_Service_Dns_DnsKey
*/
public function getOldValue()
{
return $this->oldValue;
}
}

View File

@@ -0,0 +1,53 @@
<?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_Dns_OperationManagedZoneContext extends Google_Model
{
protected $newValueType = 'Google_Service_Dns_ManagedZone';
protected $newValueDataType = '';
protected $oldValueType = 'Google_Service_Dns_ManagedZone';
protected $oldValueDataType = '';
/**
* @param Google_Service_Dns_ManagedZone
*/
public function setNewValue(Google_Service_Dns_ManagedZone $newValue)
{
$this->newValue = $newValue;
}
/**
* @return Google_Service_Dns_ManagedZone
*/
public function getNewValue()
{
return $this->newValue;
}
/**
* @param Google_Service_Dns_ManagedZone
*/
public function setOldValue(Google_Service_Dns_ManagedZone $oldValue)
{
$this->oldValue = $oldValue;
}
/**
* @return Google_Service_Dns_ManagedZone
*/
public function getOldValue()
{
return $this->oldValue;
}
}

View File

@@ -0,0 +1,75 @@
<?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.
*/
/**
* The "dnsKeys" collection of methods.
* Typical usage is:
* <code>
* $dnsService = new Google_Service_Dns(...);
* $dnsKeys = $dnsService->dnsKeys;
* </code>
*/
class Google_Service_Dns_Resource_DnsKeys extends Google_Service_Resource
{
/**
* Fetch the representation of an existing DnsKey. (dnsKeys.get)
*
* @param string $project Identifies the project addressed by this request.
* @param string $managedZone Identifies the managed zone addressed by this
* request. Can be the managed zone name or id.
* @param string $dnsKeyId The identifier of the requested DnsKey.
* @param array $optParams Optional parameters.
*
* @opt_param string clientOperationId For mutating operation requests only. An
* optional identifier specified by the client. Must be unique for operation
* resources in the Operations collection.
* @opt_param string digestType An optional comma-separated list of digest types
* to compute and display for key signing keys. If omitted, the recommended
* digest type will be computed and displayed.
* @return Google_Service_Dns_DnsKey
*/
public function get($project, $managedZone, $dnsKeyId, $optParams = array())
{
$params = array('project' => $project, 'managedZone' => $managedZone, 'dnsKeyId' => $dnsKeyId);
$params = array_merge($params, $optParams);
return $this->call('get', array($params), "Google_Service_Dns_DnsKey");
}
/**
* Enumerate DnsKeys to a ResourceRecordSet collection. (dnsKeys.listDnsKeys)
*
* @param string $project Identifies the project addressed by this request.
* @param string $managedZone Identifies the managed zone addressed by this
* request. Can be the managed zone name or id.
* @param array $optParams Optional parameters.
*
* @opt_param string digestType An optional comma-separated list of digest types
* to compute and display for key signing keys. If omitted, the recommended
* digest type will be computed and displayed.
* @opt_param int maxResults Optional. Maximum number of results to be returned.
* If unspecified, the server will decide how many results to return.
* @opt_param string pageToken Optional. A tag returned by a previous list
* request that was truncated. Use this parameter to continue a previous list
* request.
* @return Google_Service_Dns_DnsKeysListResponse
*/
public function listDnsKeys($project, $managedZone, $optParams = array())
{
$params = array('project' => $project, 'managedZone' => $managedZone);
$params = array_merge($params, $optParams);
return $this->call('list', array($params), "Google_Service_Dns_DnsKeysListResponse");
}
}

View File

@@ -0,0 +1,73 @@
<?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.
*/
/**
* The "managedZoneOperations" collection of methods.
* Typical usage is:
* <code>
* $dnsService = new Google_Service_Dns(...);
* $managedZoneOperations = $dnsService->managedZoneOperations;
* </code>
*/
class Google_Service_Dns_Resource_ManagedZoneOperations extends Google_Service_Resource
{
/**
* Fetch the representation of an existing Operation.
* (managedZoneOperations.get)
*
* @param string $project Identifies the project addressed by this request.
* @param string $managedZone Identifies the managed zone addressed by this
* request.
* @param string $operation Identifies the operation addressed by this request.
* @param array $optParams Optional parameters.
*
* @opt_param string clientOperationId For mutating operation requests only. An
* optional identifier specified by the client. Must be unique for operation
* resources in the Operations collection.
* @return Google_Service_Dns_Operation
*/
public function get($project, $managedZone, $operation, $optParams = array())
{
$params = array('project' => $project, 'managedZone' => $managedZone, 'operation' => $operation);
$params = array_merge($params, $optParams);
return $this->call('get', array($params), "Google_Service_Dns_Operation");
}
/**
* Enumerate Operations for the given ManagedZone.
* (managedZoneOperations.listManagedZoneOperations)
*
* @param string $project Identifies the project addressed by this request.
* @param string $managedZone Identifies the managed zone addressed by this
* request.
* @param array $optParams Optional parameters.
*
* @opt_param int maxResults Optional. Maximum number of results to be returned.
* If unspecified, the server will decide how many results to return.
* @opt_param string pageToken Optional. A tag returned by a previous list
* request that was truncated. Use this parameter to continue a previous list
* request.
* @opt_param string sortBy Sorting criterion. The only supported values are
* START_TIME and ID.
* @return Google_Service_Dns_ManagedZoneOperationsListResponse
*/
public function listManagedZoneOperations($project, $managedZone, $optParams = array())
{
$params = array('project' => $project, 'managedZone' => $managedZone);
$params = array_merge($params, $optParams);
return $this->call('list', array($params), "Google_Service_Dns_ManagedZoneOperationsListResponse");
}
}

View File

@@ -0,0 +1,30 @@
<?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_Dns_ResponseHeader extends Google_Model
{
public $operationId;
public function setOperationId($operationId)
{
$this->operationId = $operationId;
}
public function getOperationId()
{
return $this->operationId;
}
}