Mise à jour des librairies

This commit is contained in:
lars
2019-03-10 23:30:23 +01:00
parent 2040b7be39
commit 7df3d72953
3603 changed files with 233169 additions and 107764 deletions

View File

@@ -18,6 +18,8 @@
class Google_Service_Directory_Building extends Google_Collection
{
protected $collection_key = 'floorNames';
protected $addressType = 'Google_Service_Directory_BuildingAddress';
protected $addressDataType = '';
public $buildingId;
public $buildingName;
protected $coordinatesType = 'Google_Service_Directory_BuildingCoordinates';
@@ -27,6 +29,20 @@ class Google_Service_Directory_Building extends Google_Collection
public $floorNames;
public $kind;
/**
* @param Google_Service_Directory_BuildingAddress
*/
public function setAddress(Google_Service_Directory_BuildingAddress $address)
{
$this->address = $address;
}
/**
* @return Google_Service_Directory_BuildingAddress
*/
public function getAddress()
{
return $this->address;
}
public function setBuildingId($buildingId)
{
$this->buildingId = $buildingId;

View File

@@ -0,0 +1,85 @@
<?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_Directory_BuildingAddress extends Google_Collection
{
protected $collection_key = 'addressLines';
public $addressLines;
public $administrativeArea;
public $languageCode;
public $locality;
public $postalCode;
public $regionCode;
public $sublocality;
public function setAddressLines($addressLines)
{
$this->addressLines = $addressLines;
}
public function getAddressLines()
{
return $this->addressLines;
}
public function setAdministrativeArea($administrativeArea)
{
$this->administrativeArea = $administrativeArea;
}
public function getAdministrativeArea()
{
return $this->administrativeArea;
}
public function setLanguageCode($languageCode)
{
$this->languageCode = $languageCode;
}
public function getLanguageCode()
{
return $this->languageCode;
}
public function setLocality($locality)
{
$this->locality = $locality;
}
public function getLocality()
{
return $this->locality;
}
public function setPostalCode($postalCode)
{
$this->postalCode = $postalCode;
}
public function getPostalCode()
{
return $this->postalCode;
}
public function setRegionCode($regionCode)
{
$this->regionCode = $regionCode;
}
public function getRegionCode()
{
return $this->regionCode;
}
public function setSublocality($sublocality)
{
$this->sublocality = $sublocality;
}
public function getSublocality()
{
return $this->sublocality;
}
}

View File

@@ -17,16 +17,20 @@
class Google_Service_Directory_ChromeOsDevice extends Google_Collection
{
protected $collection_key = 'recentUsers';
protected $collection_key = 'systemRamFreeReports';
protected $activeTimeRangesType = 'Google_Service_Directory_ChromeOsDeviceActiveTimeRanges';
protected $activeTimeRangesDataType = 'array';
public $annotatedAssetId;
public $annotatedLocation;
public $annotatedUser;
public $bootMode;
protected $cpuStatusReportsType = 'Google_Service_Directory_ChromeOsDeviceCpuStatusReports';
protected $cpuStatusReportsDataType = 'array';
protected $deviceFilesType = 'Google_Service_Directory_ChromeOsDeviceDeviceFiles';
protected $deviceFilesDataType = 'array';
public $deviceId;
protected $diskVolumeReportsType = 'Google_Service_Directory_ChromeOsDeviceDiskVolumeReports';
protected $diskVolumeReportsDataType = 'array';
public $etag;
public $ethernetMacAddress;
public $firmwareVersion;
@@ -46,6 +50,9 @@ class Google_Service_Directory_ChromeOsDevice extends Google_Collection
public $serialNumber;
public $status;
public $supportEndDate;
protected $systemRamFreeReportsType = 'Google_Service_Directory_ChromeOsDeviceSystemRamFreeReports';
protected $systemRamFreeReportsDataType = 'array';
public $systemRamTotal;
protected $tpmVersionInfoType = 'Google_Service_Directory_ChromeOsDeviceTpmVersionInfo';
protected $tpmVersionInfoDataType = '';
public $willAutoRenew;
@@ -96,6 +103,20 @@ class Google_Service_Directory_ChromeOsDevice extends Google_Collection
{
return $this->bootMode;
}
/**
* @param Google_Service_Directory_ChromeOsDeviceCpuStatusReports
*/
public function setCpuStatusReports($cpuStatusReports)
{
$this->cpuStatusReports = $cpuStatusReports;
}
/**
* @return Google_Service_Directory_ChromeOsDeviceCpuStatusReports
*/
public function getCpuStatusReports()
{
return $this->cpuStatusReports;
}
/**
* @param Google_Service_Directory_ChromeOsDeviceDeviceFiles
*/
@@ -118,6 +139,20 @@ class Google_Service_Directory_ChromeOsDevice extends Google_Collection
{
return $this->deviceId;
}
/**
* @param Google_Service_Directory_ChromeOsDeviceDiskVolumeReports
*/
public function setDiskVolumeReports($diskVolumeReports)
{
$this->diskVolumeReports = $diskVolumeReports;
}
/**
* @return Google_Service_Directory_ChromeOsDeviceDiskVolumeReports
*/
public function getDiskVolumeReports()
{
return $this->diskVolumeReports;
}
public function setEtag($etag)
{
$this->etag = $etag;
@@ -268,6 +303,28 @@ class Google_Service_Directory_ChromeOsDevice extends Google_Collection
{
return $this->supportEndDate;
}
/**
* @param Google_Service_Directory_ChromeOsDeviceSystemRamFreeReports
*/
public function setSystemRamFreeReports($systemRamFreeReports)
{
$this->systemRamFreeReports = $systemRamFreeReports;
}
/**
* @return Google_Service_Directory_ChromeOsDeviceSystemRamFreeReports
*/
public function getSystemRamFreeReports()
{
return $this->systemRamFreeReports;
}
public function setSystemRamTotal($systemRamTotal)
{
$this->systemRamTotal = $systemRamTotal;
}
public function getSystemRamTotal()
{
return $this->systemRamTotal;
}
/**
* @param Google_Service_Directory_ChromeOsDeviceTpmVersionInfo
*/

View File

@@ -0,0 +1,56 @@
<?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_Directory_ChromeOsDeviceCpuStatusReports extends Google_Collection
{
protected $collection_key = 'cpuUtilizationPercentageInfo';
protected $cpuTemperatureInfoType = 'Google_Service_Directory_ChromeOsDeviceCpuStatusReportsCpuTemperatureInfo';
protected $cpuTemperatureInfoDataType = 'array';
public $cpuUtilizationPercentageInfo;
public $reportTime;
/**
* @param Google_Service_Directory_ChromeOsDeviceCpuStatusReportsCpuTemperatureInfo
*/
public function setCpuTemperatureInfo($cpuTemperatureInfo)
{
$this->cpuTemperatureInfo = $cpuTemperatureInfo;
}
/**
* @return Google_Service_Directory_ChromeOsDeviceCpuStatusReportsCpuTemperatureInfo
*/
public function getCpuTemperatureInfo()
{
return $this->cpuTemperatureInfo;
}
public function setCpuUtilizationPercentageInfo($cpuUtilizationPercentageInfo)
{
$this->cpuUtilizationPercentageInfo = $cpuUtilizationPercentageInfo;
}
public function getCpuUtilizationPercentageInfo()
{
return $this->cpuUtilizationPercentageInfo;
}
public function setReportTime($reportTime)
{
$this->reportTime = $reportTime;
}
public function getReportTime()
{
return $this->reportTime;
}
}

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_Directory_ChromeOsDeviceCpuStatusReportsCpuTemperatureInfo extends Google_Model
{
public $label;
public $temperature;
public function setLabel($label)
{
$this->label = $label;
}
public function getLabel()
{
return $this->label;
}
public function setTemperature($temperature)
{
$this->temperature = $temperature;
}
public function getTemperature()
{
return $this->temperature;
}
}

View File

@@ -0,0 +1,38 @@
<?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_Directory_ChromeOsDeviceDiskVolumeReports extends Google_Collection
{
protected $collection_key = 'volumeInfo';
protected $volumeInfoType = 'Google_Service_Directory_ChromeOsDeviceDiskVolumeReportsVolumeInfo';
protected $volumeInfoDataType = 'array';
/**
* @param Google_Service_Directory_ChromeOsDeviceDiskVolumeReportsVolumeInfo
*/
public function setVolumeInfo($volumeInfo)
{
$this->volumeInfo = $volumeInfo;
}
/**
* @return Google_Service_Directory_ChromeOsDeviceDiskVolumeReportsVolumeInfo
*/
public function getVolumeInfo()
{
return $this->volumeInfo;
}
}

View File

@@ -0,0 +1,48 @@
<?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_Directory_ChromeOsDeviceDiskVolumeReportsVolumeInfo extends Google_Model
{
public $storageFree;
public $storageTotal;
public $volumeId;
public function setStorageFree($storageFree)
{
$this->storageFree = $storageFree;
}
public function getStorageFree()
{
return $this->storageFree;
}
public function setStorageTotal($storageTotal)
{
$this->storageTotal = $storageTotal;
}
public function getStorageTotal()
{
return $this->storageTotal;
}
public function setVolumeId($volumeId)
{
$this->volumeId = $volumeId;
}
public function getVolumeId()
{
return $this->volumeId;
}
}

View File

@@ -0,0 +1,40 @@
<?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_Directory_ChromeOsDeviceSystemRamFreeReports extends Google_Collection
{
protected $collection_key = 'systemRamFreeInfo';
public $reportTime;
public $systemRamFreeInfo;
public function setReportTime($reportTime)
{
$this->reportTime = $reportTime;
}
public function getReportTime()
{
return $this->reportTime;
}
public function setSystemRamFreeInfo($systemRamFreeInfo)
{
$this->systemRamFreeInfo = $systemRamFreeInfo;
}
public function getSystemRamFreeInfo()
{
return $this->systemRamFreeInfo;
}
}

View File

@@ -17,6 +17,10 @@
class Google_Service_Directory_Member extends Google_Model
{
protected $internal_gapi_mappings = array(
"deliverySettings" => "delivery_settings",
);
public $deliverySettings;
public $email;
public $etag;
public $id;
@@ -25,6 +29,14 @@ class Google_Service_Directory_Member extends Google_Model
public $status;
public $type;
public function setDeliverySettings($deliverySettings)
{
$this->deliverySettings = $deliverySettings;
}
public function getDeliverySettings()
{
return $this->deliverySettings;
}
public function setEmail($email)
{
$this->email = $email;

View File

@@ -70,7 +70,7 @@ class Google_Service_Directory_Resource_Chromeosdevices extends Google_Service_R
* @opt_param string projection Restrict information returned to a set of
* selected fields.
* @opt_param string query Search string in the format given at
* http://support.google.com/chromeos/a/bin/answer.py?hl=en=1698333
* http://support.google.com/chromeos/a/bin/answer.py?answer=1698333
* @opt_param string sortOrder Whether to return results in ascending or
* descending order. Only of use when orderBy is also used
* @return Google_Service_Directory_ChromeOsDevices

View File

@@ -64,7 +64,8 @@ class Google_Service_Directory_Resource_Groups extends Google_Service_Resource
return $this->call('insert', array($params), "Google_Service_Directory_Group");
}
/**
* Retrieve all groups in a domain (paginated) (groups.listGroups)
* Retrieve all groups of a domain or of a user given a userKey (paginated)
* (groups.listGroups)
*
* @param array $optParams Optional parameters.
*
@@ -75,9 +76,15 @@ class Google_Service_Directory_Resource_Groups extends Google_Service_Resource
* from only this domain. To return all groups in a multi-domain fill customer
* field instead.
* @opt_param int maxResults Maximum number of results to return. Default is 200
* @opt_param string orderBy Column to use for sorting results
* @opt_param string pageToken Token to specify next page in the list
* @opt_param string userKey Email or immutable ID of the user if only those
* groups are to be listed, the given user is a member of. If ID, it should
* @opt_param string query Query string search. Should be of the form "".
* Complete documentation is at https://developers.google.com/admin-
* sdk/directory/v1/guides/search-groups
* @opt_param string sortOrder Whether to return results in ascending or
* descending order. Only of use when orderBy is also used
* @opt_param string userKey Email or immutable Id of the user if only those
* groups are to be listed, the given user is a member of. If Id, it should
* match with id of user object
* @return Google_Service_Directory_Groups
*/

View File

@@ -89,6 +89,8 @@ class Google_Service_Directory_Resource_Members extends Google_Service_Resource
* @param string $groupKey Email or immutable ID of the group
* @param array $optParams Optional parameters.
*
* @opt_param bool includeDerivedMembership Whether to list indirect
* memberships. Default: false.
* @opt_param int maxResults Maximum number of results to return. Default is 200
* @opt_param string pageToken Token to specify next page in the list
* @opt_param string roles Comma separated role values to filter list results

View File

@@ -82,7 +82,7 @@ class Google_Service_Directory_Resource_Mobiledevices extends Google_Service_Res
* @opt_param string projection Restrict information returned to a set of
* selected fields.
* @opt_param string query Search string in the format given at
* http://support.google.com/a/bin/answer.py?hl=en=1408863#search
* http://support.google.com/a/bin/answer.py?answer=1408863#search
* @opt_param string sortOrder Whether to return results in ascending or
* descending order. Only of use when orderBy is also used
* @return Google_Service_Directory_MobileDevices

View File

@@ -64,6 +64,9 @@ class Google_Service_Directory_Resource_ResourcesBuildings extends Google_Servic
* your account's customer ID.
* @param Google_Service_Directory_Building $postBody
* @param array $optParams Optional parameters.
*
* @opt_param string coordinatesSource Source from which Building.coordinates
* are derived.
* @return Google_Service_Directory_Building
*/
public function insert($customer, Google_Service_Directory_Building $postBody, $optParams = array())
@@ -100,6 +103,9 @@ class Google_Service_Directory_Resource_ResourcesBuildings extends Google_Servic
* @param string $buildingId The ID of the building to update.
* @param Google_Service_Directory_Building $postBody
* @param array $optParams Optional parameters.
*
* @opt_param string coordinatesSource Source from which Building.coordinates
* are derived.
* @return Google_Service_Directory_Building
*/
public function patch($customer, $buildingId, Google_Service_Directory_Building $postBody, $optParams = array())
@@ -117,6 +123,9 @@ class Google_Service_Directory_Resource_ResourcesBuildings extends Google_Servic
* @param string $buildingId The ID of the building to update.
* @param Google_Service_Directory_Building $postBody
* @param array $optParams Optional parameters.
*
* @opt_param string coordinatesSource Source from which Building.coordinates
* are derived.
* @return Google_Service_Directory_Building
*/
public function update($customer, $buildingId, Google_Service_Directory_Building $postBody, $optParams = array())

View File

@@ -18,6 +18,7 @@
class Google_Service_Directory_Schema extends Google_Collection
{
protected $collection_key = 'fields';
public $displayName;
public $etag;
protected $fieldsType = 'Google_Service_Directory_SchemaFieldSpec';
protected $fieldsDataType = 'array';
@@ -25,6 +26,14 @@ class Google_Service_Directory_Schema extends Google_Collection
public $schemaId;
public $schemaName;
public function setDisplayName($displayName)
{
$this->displayName = $displayName;
}
public function getDisplayName()
{
return $this->displayName;
}
public function setEtag($etag)
{
$this->etag = $etag;

View File

@@ -17,6 +17,7 @@
class Google_Service_Directory_SchemaFieldSpec extends Google_Model
{
public $displayName;
public $etag;
public $fieldId;
public $fieldName;
@@ -28,6 +29,14 @@ class Google_Service_Directory_SchemaFieldSpec extends Google_Model
protected $numericIndexingSpecDataType = '';
public $readAccessType;
public function setDisplayName($displayName)
{
$this->displayName = $displayName;
}
public function getDisplayName()
{
return $this->displayName;
}
public function setEtag($etag)
{
$this->etag = $etag;

View File

@@ -21,6 +21,7 @@ class Google_Service_Directory_User extends Google_Collection
public $addresses;
public $agreedToTerms;
public $aliases;
public $archived;
public $changePasswordAtNextLogin;
public $creationTime;
public $customSchemas;
@@ -87,6 +88,14 @@ class Google_Service_Directory_User extends Google_Collection
{
return $this->aliases;
}
public function setArchived($archived)
{
$this->archived = $archived;
}
public function getArchived()
{
return $this->archived;
}
public function setChangePasswordAtNextLogin($changePasswordAtNextLogin)
{
$this->changePasswordAtNextLogin = $changePasswordAtNextLogin;

View File

@@ -21,6 +21,7 @@ class Google_Service_Directory_UserPosixAccount extends Google_Model
public $gecos;
public $gid;
public $homeDirectory;
public $operatingSystemType;
public $primary;
public $shell;
public $systemId;
@@ -59,6 +60,14 @@ class Google_Service_Directory_UserPosixAccount extends Google_Model
{
return $this->homeDirectory;
}
public function setOperatingSystemType($operatingSystemType)
{
$this->operatingSystemType = $operatingSystemType;
}
public function getOperatingSystemType()
{
return $this->operatingSystemType;
}
public function setPrimary($primary)
{
$this->primary = $primary;